analytics
LangSmith Lua API for KosmoKrator Agents
Agent-facing Lua documentation and function reference for the LangSmith KosmoKrator integration.Lua Namespace
Agents call this integration through app.integrations.langsmith.*.
Use lua_read_doc("integrations.langsmith") inside KosmoKrator to discover the same reference at runtime.
Call Lua from the Headless CLI
Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic
LangSmith workflow without starting an interactive agent session.
kosmo integrations:lua --eval 'dump(app.integrations.langsmith.get_server_info({}))' --json kosmo integrations:lua --eval 'print(docs.read("langsmith"))' --json
kosmo integrations:lua --eval 'print(docs.read("langsmith.get_server_info"))' --json Workflow file
Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.
local langsmith = app.integrations.langsmith
local result = langsmith.get_server_info({})
dump(result) kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json integrations:lua exposes app.integrations.langsmith, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.langsmith.default.* or app.integrations.langsmith.work.* when you configured named credential accounts.
MCP-only Lua
If the script only needs configured MCP servers and does not need LangSmith, use the narrower mcp:lua command.
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json Agent-Facing Lua Docs
This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.
LangSmith - Lua API Reference
LangSmith tools are exposed under app.integrations.langsmith. This package is generated from the official LangSmith OpenAPI document at https://api.smith.langchain.com/openapi.json and currently exposes 540 operations.
Configure api_key for the x-api-key header. Advanced deployments may also set bearer_token, tenant_id (x-tenant-id), organization_id (x-organization-id), and base_url such as https://eu.api.smith.langchain.com.
Every endpoint-specific tool accepts path parameters as top-level arguments, known query parameters either as top-level shortcuts or inside query, and JSON request bodies inside body. Multipart endpoints accept body.file_path for local file uploads. Responses are the decoded LangSmith JSON payload, or { success = true, status = ... } for empty successful responses.
Examples
local sessions = app.integrations.langsmith.langsmith_read_tracer_sessions({
query = { limit = 10 }
})
local run = app.integrations.langsmith.langsmith_create_run({
body = {
name = "support-agent",
run_type = "chain",
inputs = { question = "hello" },
start_time = "2026-05-06T10:00:00Z"
}
})
local feedback = app.integrations.langsmith.langsmith_create_feedback({
body = { run_id = run.id, key = "quality", score = 1.0 }
})
Multi-Account Usage
app.integrations.langsmith.langsmith_read_datasets({})
app.integrations.langsmith.default.langsmith_read_datasets({})
app.integrations.langsmith.production.langsmith_read_datasets({})
LangSmith
langsmith_get_api_v1_ok- GET /api/v1/ok - Ok
Organizations
langsmith_get_v1_platform_orgs_current_info- GET /v1/platform/orgs/current/info - Get current organization info
SCIM Tokens
langsmith_get_v1_platform_orgs_current_scim_tokens- GET /v1/platform/orgs/current/scim/tokens - List SCIM tokenslangsmith_post_v1_platform_orgs_current_scim_tokens- POST /v1/platform/orgs/current/scim/tokens - Create a SCIM tokenlangsmith_get_v1_platform_orgs_current_scim_tokens_scim_token_id- GET /v1/platform/orgs/current/scim/tokens/{scim_token_id} - Get a SCIM tokenlangsmith_delete_v1_platform_orgs_current_scim_tokens_scim_token_id- DELETE /v1/platform/orgs/current/scim/tokens/{scim_token_id} - Delete a SCIM tokenlangsmith_patch_v1_platform_orgs_current_scim_tokens_scim_token_id- PATCH /v1/platform/orgs/current/scim/tokens/{scim_token_id} - Update a SCIM token
TTL Settings
langsmith_get_workspaces_current_ttl_settings- GET /workspaces/current/ttl-settings - Get workspace TTL settingslangsmith_put_workspaces_current_ttl_settings- PUT /workspaces/current/ttl-settings - Update workspace TTL settings
Access Policies
langsmith_get_v1_platform_orgs_current_access_policies- GET /v1/platform/orgs/current/access-policies - List access policieslangsmith_post_v1_platform_orgs_current_access_policies- POST /v1/platform/orgs/current/access-policies - Create an access policylangsmith_post_v1_platform_orgs_current_access_policies_roles_role_id_access_policies- POST /v1/platform/orgs/current/access-policies/roles/{role_id}/access-policies - Attach access policies to a rolelangsmith_get_v1_platform_orgs_current_access_policies_access_policy_id- GET /v1/platform/orgs/current/access-policies/{access_policy_id} - Get an access policylangsmith_delete_v1_platform_orgs_current_access_policies_access_policy_id- DELETE /v1/platform/orgs/current/access-policies/{access_policy_id} - Delete an access policy
Ace
langsmith_execute- POST /api/v1/ace/execute - Execute
Agents
langsmith_get_v1_fleet_agents- GET /v1/fleet/agents - List agentslangsmith_post_v1_fleet_agents- POST /v1/fleet/agents - Create an agentlangsmith_get_v1_fleet_agents_agentid- GET /v1/fleet/agents/{agentID} - Get an agentlangsmith_patch_v1_fleet_agents_agentid- PATCH /v1/fleet/agents/{agentID} - Update an agent
Alert Rules
langsmith_post_v1_platform_alerts_session_id- POST /v1/platform/alerts/{session_id} - Create an alert rulelangsmith_post_v1_platform_alerts_session_id_test- POST /v1/platform/alerts/{session_id}/test - Test an alert action to determine if configuration is validlangsmith_get_v1_platform_alerts_session_id_alert_rule_id- GET /v1/platform/alerts/{session_id}/{alert_rule_id} - Get an alert rulelangsmith_delete_v1_platform_alerts_session_id_alert_rule_id- DELETE /v1/platform/alerts/{session_id}/{alert_rule_id} - Delete an alert rulelangsmith_patch_v1_platform_alerts_session_id_alert_rule_id- PATCH /v1/platform/alerts/{session_id}/{alert_rule_id} - Update an alert rule
Annotation Queues
langsmith_get_annotation_queues- GET /api/v1/annotation-queues - Get Annotation Queueslangsmith_create_annotation_queue- POST /api/v1/annotation-queues - Create Annotation Queuelangsmith_delete_annotation_queues- DELETE /api/v1/annotation-queues - Delete Annotation Queueslangsmith_populate_annotation_queue- POST /api/v1/annotation-queues/populate - Populate Annotation Queuelangsmith_delete_annotation_queue- DELETE /api/v1/annotation-queues/{queue_id} - Delete Annotation Queuelangsmith_update_annotation_queue- PATCH /api/v1/annotation-queues/{queue_id} - Update Annotation Queuelangsmith_get_annotation_queue- GET /api/v1/annotation-queues/{queue_id} - Get Annotation Queuelangsmith_add_runs_to_annotation_queue- POST /api/v1/annotation-queues/{queue_id}/runs - Add Runs To Annotation Queuelangsmith_get_runs_from_annotation_queue- GET /api/v1/annotation-queues/{queue_id}/runs - Get Runs From Annotation Queuelangsmith_add_runs_to_annotation_queue_by_key- POST /api/v1/annotation-queues/{queue_id}/runs/by-key - Add Runs To Annotation Queue By Keylangsmith_export_annotation_queue_archived_runs- POST /api/v1/annotation-queues/{queue_id}/export - Export Annotation Queue Archived Runslangsmith_get_run_from_annotation_queue- GET /api/v1/annotation-queues/{queue_id}/run/{index} - Get Run From Annotation Queuelangsmith_get_annotation_queues_for_run- GET /api/v1/annotation-queues/{run_id}/queues - Get Annotation Queues For Runlangsmith_update_run_in_annotation_queue- PATCH /api/v1/annotation-queues/{queue_id}/runs/{queue_run_id} - Update Run In Annotation Queuelangsmith_delete_run_from_annotation_queue- DELETE /api/v1/annotation-queues/{queue_id}/runs/{queue_run_id} - Delete Run From Annotation Queuelangsmith_delete_runs_from_annotation_queue- POST /api/v1/annotation-queues/{queue_id}/runs/delete - Delete Runs From Annotation Queuelangsmith_get_total_size_from_annotation_queue- GET /api/v1/annotation-queues/{queue_id}/total_size - Get Total Size From Annotation Queuelangsmith_get_total_archived_from_annotation_queue- GET /api/v1/annotation-queues/{queue_id}/total_archived - Get Total Archived From Annotation Queuelangsmith_get_size_from_annotation_queue- GET /api/v1/annotation-queues/{queue_id}/size - Get Size From Annotation Queuelangsmith_create_identity_annotation_queue_run_status- POST /api/v1/annotation-queues/status/{annotation_queue_run_id} - Create Identity Annotation Queue Run Statuslangsmith_resolve_annotation_queue_run- GET /api/v1/annotation-queues/{queue_id}/runs/resolve/{queue_run_id} - Resolve Annotation Queue Run
Annotation Queues
langsmith_post_v1_platform_annotation_queues_queue_id_reviewers- POST /v1/platform/annotation-queues/{queue_id}/reviewers - Add a reviewer to an annotation queuelangsmith_delete_v1_platform_annotation_queues_queue_id_reviewers_identity_id- DELETE /v1/platform/annotation-queues/{queue_id}/reviewers/{identity_id} - Remove a reviewer from an annotation queue
Api Key
langsmith_get_api_v1_api_key- GET /api/v1/api-key - Get Api Keyslangsmith_post_api_v1_api_key- POST /api/v1/api-key - Generate Api Keylangsmith_delete- DELETE /api/v1/api-key/{api_key_id} - Delete Api Keylangsmith_get_personal_access_tokens- GET /api/v1/api-key/current - Get Personal Access Tokenslangsmith_generate_personal_access_token- POST /api/v1/api-key/current - Generate Personal Access Tokenlangsmith_delete_personal_access_token- DELETE /api/v1/api-key/current/{pat_id} - Delete Personal Access Token
Audit Logs
langsmith_get_audit_logs- GET /api/v1/audit-logs - Get Audit Logs
Auth
langsmith_login- POST /api/v1/login - Loginlangsmith_send_sso_email_confirmation- POST /api/v1/sso/email-verification/send - Send Sso Email Confirmationlangsmith_check_sso_email_verification_status- POST /api/v1/sso/email-verification/status - Check Sso Email Verification Statuslangsmith_confirm_sso_user_email- POST /api/v1/sso/email-verification/confirm - Confirm Sso User Emaillangsmith_get_sso_settings- GET /api/v1/sso/settings/{sso_login_slug} - Get Sso Settingslangsmith_lookup_sso_by_email- POST /api/v1/sso/email-lookup - Lookup Sso By Emaillangsmith_get_auth_public- GET /auth/public - Get public auth info
Aws Marketplace
langsmith_post_aws_marketplace_register- POST /aws-marketplace/register - AWS Marketplace fulfillment URL registration
Backfills
langsmith_post_v1_platform_ops_backfills_restart- POST /v1/platform/ops/backfills/restart - Restart a backfill job
Beacon
langsmith_post_v1_beacon_usage_snapshot- POST /v1/beacon/usage-snapshot - Submit a self-hosted usage snapshot
Bulk Exports
langsmith_get_bulk_exports- GET /api/v1/bulk-exports - Get Bulk Exportslangsmith_create_bulk_export- POST /api/v1/bulk-exports - Create Bulk Exportlangsmith_get_bulk_export_destinations- GET /api/v1/bulk-exports/destinations - Get Bulk Export Destinationslangsmith_create_bulk_export_destination- POST /api/v1/bulk-exports/destinations - Create Bulk Export Destinationlangsmith_get_bulk_export_runs_filtered- GET /api/v1/bulk-exports/runs - Get Bulk Export Runs Filteredlangsmith_get_bulk_export- GET /api/v1/bulk-exports/{bulk_export_id} - Get Bulk Exportlangsmith_cancel_bulk_export- PATCH /api/v1/bulk-exports/{bulk_export_id} - Cancel Bulk Exportlangsmith_get_bulk_export_destination- GET /api/v1/bulk-exports/destinations/{destination_id} - Get Bulk Export Destinationlangsmith_update_bulk_export_destination- PATCH /api/v1/bulk-exports/destinations/{destination_id} - Update Bulk Export Destinationlangsmith_get_bulk_export_runs- GET /api/v1/bulk-exports/{bulk_export_id}/runs - Get Bulk Export Runslangsmith_get_bulk_export_run- GET /api/v1/bulk-exports/{bulk_export_id}/runs/{run_id} - Get Bulk Export Run
Charts
langsmith_clone_section- POST /api/v1/charts/section/clone - Clone Sectionlangsmith_read_sections- GET /api/v1/charts/section - Read Sectionslangsmith_create_section- POST /api/v1/charts/section - Create Sectionlangsmith_read_charts- POST /api/v1/charts - Read Chartslangsmith_read_chart_preview- POST /api/v1/charts/preview - Read Chart Previewlangsmith_create_chart- POST /api/v1/charts/create - Create Chartlangsmith_read_single_chart- POST /api/v1/charts/{chart_id} - Read Single Chartlangsmith_update_chart- PATCH /api/v1/charts/{chart_id} - Update Chartlangsmith_delete_chart- DELETE /api/v1/charts/{chart_id} - Delete Chartlangsmith_read_single_section- POST /api/v1/charts/section/{section_id} - Read Single Sectionlangsmith_update_section- PATCH /api/v1/charts/section/{section_id} - Update Sectionlangsmith_delete_section- DELETE /api/v1/charts/section/{section_id} - Delete Sectionlangsmith_org_read_sections- GET /api/v1/org-charts/section - Org Read Sectionslangsmith_org_create_section- POST /api/v1/org-charts/section - Org Create Sectionlangsmith_org_read_charts- POST /api/v1/org-charts - Org Read Chartslangsmith_org_read_chart_preview- POST /api/v1/org-charts/preview - Org Read Chart Previewlangsmith_org_create_chart- POST /api/v1/org-charts/create - Org Create Chartlangsmith_org_read_single_chart- POST /api/v1/org-charts/{chart_id} - Org Read Single Chartlangsmith_org_update_chart- PATCH /api/v1/org-charts/{chart_id} - Org Update Chartlangsmith_org_delete_chart- DELETE /api/v1/org-charts/{chart_id} - Org Delete Chartlangsmith_org_read_single_section- POST /api/v1/org-charts/section/{section_id} - Org Read Single Sectionlangsmith_org_update_section- PATCH /api/v1/org-charts/section/{section_id} - Org Update Sectionlangsmith_org_delete_section- DELETE /api/v1/org-charts/section/{section_id} - Org Delete Section
Comments
langsmith_create_comment- POST /api/v1/comments/{owner}/{repo} - Create Commentlangsmith_get_comments- GET /api/v1/comments/{owner}/{repo} - Get Commentslangsmith_get_sub_comments- GET /api/v1/comments/{owner}/{repo}/{parent_comment_id} - Get Sub Commentslangsmith_create_sub_comment- POST /api/v1/comments/{owner}/{repo}/{parent_comment_id} - Create Sub Commentlangsmith_like_comment- POST /api/v1/comments/{owner}/{repo}/{parent_comment_id}/like - Like Commentlangsmith_unlike_comment- DELETE /api/v1/comments/{owner}/{repo}/{parent_comment_id}/like - Unlike Comment
Commits
langsmith_get_commits_owner_repo- GET /commits/{owner}/{repo} - List commitslangsmith_post_commits_owner_repo- POST /commits/{owner}/{repo} - Create a commitlangsmith_get_commits_owner_repo_commit- GET /commits/{owner}/{repo}/{commit} - Get a commit
Data Planes
langsmith_get_v1_platform_orgs_current_data_planes- GET /v1/platform/orgs/current/data-planes - List data planes for the current organization
Datasets
langsmith_read_datasets- GET /api/v1/datasets - Read Datasetslangsmith_create_dataset- POST /api/v1/datasets - Create Datasetlangsmith_delete_datasets- DELETE /api/v1/datasets - Delete Datasetslangsmith_read_datasets_stream- GET /api/v1/datasets/stream - Read Datasets Streamlangsmith_read_dataset- GET /api/v1/datasets/{dataset_id} - Read Datasetlangsmith_delete_dataset- DELETE /api/v1/datasets/{dataset_id} - Delete Datasetlangsmith_update_dataset- PATCH /api/v1/datasets/{dataset_id} - Update Datasetlangsmith_upload_csv_dataset- POST /api/v1/datasets/upload - Upload Csv Datasetlangsmith_upload_experiment- POST /api/v1/datasets/upload-experiment - Upload Experimentlangsmith_get_dataset_versions- GET /api/v1/datasets/{dataset_id}/versions - Get Dataset Versionslangsmith_diff_dataset_versions- GET /api/v1/datasets/{dataset_id}/versions/diff - Diff Dataset Versionslangsmith_get_dataset_version- GET /api/v1/datasets/{dataset_id}/version - Get Dataset Versionlangsmith_update_dataset_version- PUT /api/v1/datasets/{dataset_id}/tags - Update Dataset Versionlangsmith_download_dataset_openai- GET /api/v1/datasets/{dataset_id}/openai - Download Dataset Openailangsmith_download_dataset_openai_ft- GET /api/v1/datasets/{dataset_id}/openai_ft - Download Dataset Openai Ftlangsmith_download_dataset_csv- GET /api/v1/datasets/{dataset_id}/csv - Download Dataset Csvlangsmith_download_dataset_jsonl- GET /api/v1/datasets/{dataset_id}/jsonl - Download Dataset Jsonllangsmith_read_examples_with_runs- POST /api/v1/datasets/{dataset_id}/runs - Read Examples With Runslangsmith_read_examples_with_runs_grouped- POST /api/v1/datasets/{dataset_id}/group/runs - Read Examples With Runs Groupedlangsmith_read_delta- POST /api/v1/datasets/{dataset_id}/runs/delta - Read Deltalangsmith_read_delta_stream- POST /api/v1/datasets/{dataset_id}/runs/delta/stream - Read Delta Streamlangsmith_read_grouped_experiments- POST /api/v1/datasets/{dataset_id}/experiments/grouped - Read Grouped Experimentslangsmith_read_dataset_share_state- GET /api/v1/datasets/{dataset_id}/share - Read Dataset Share Statelangsmith_share_dataset- PUT /api/v1/datasets/{dataset_id}/share - Share Datasetlangsmith_unshare_dataset- DELETE /api/v1/datasets/{dataset_id}/share - Unshare Datasetlangsmith_read_comparative_experiments- GET /api/v1/datasets/{dataset_id}/comparative - Read Comparative Experimentslangsmith_create_comparative_experiment- POST /api/v1/datasets/comparative - Create Comparative Experimentlangsmith_delete_comparative_experiment- DELETE /api/v1/datasets/comparative/{comparative_experiment_id} - Delete Comparative Experimentlangsmith_clone_dataset- POST /api/v1/datasets/clone - Clone Datasetlangsmith_get_dataset_splits- GET /api/v1/datasets/{dataset_id}/splits - Get Dataset Splitslangsmith_update_dataset_splits- PUT /api/v1/datasets/{dataset_id}/splits - Update Dataset Splitslangsmith_generate- POST /api/v1/datasets/{dataset_id}/generate - Generatelangsmith_dataset_handler- POST /api/v1/datasets/playground_experiment/batch - Dataset Handlerlangsmith_stream_dataset_handler- POST /api/v1/datasets/playground_experiment/stream - Stream Dataset Handlerlangsmith_studio_experiment- POST /api/v1/datasets/studio_experiment - Studio Experiment
Directories
langsmith_get_v1_platform_hub_repos_owner_repo_directories- GET /v1/platform/hub/repos/{owner}/{repo}/directories - Get directory contentslangsmith_delete_v1_platform_hub_repos_owner_repo_directories- DELETE /v1/platform/hub/repos/{owner}/{repo}/directories - Delete directory repositorylangsmith_post_v1_platform_hub_repos_owner_repo_directories_commits- POST /v1/platform/hub/repos/{owner}/{repo}/directories/commits - Create directory commit
Evaluators
langsmith_get_v1_platform_evaluators- GET /v1/platform/evaluators - List evaluatorslangsmith_post_v1_platform_evaluators- POST /v1/platform/evaluators - Create evaluatorlangsmith_delete_v1_platform_evaluators- DELETE /v1/platform/evaluators - Bulk delete evaluatorslangsmith_get_v1_platform_evaluators_evaluator_id- GET /v1/platform/evaluators/{evaluator_id} - Get evaluatorlangsmith_delete_v1_platform_evaluators_evaluator_id- DELETE /v1/platform/evaluators/{evaluator_id} - Delete evaluatorlangsmith_patch_v1_platform_evaluators_evaluator_id- PATCH /v1/platform/evaluators/{evaluator_id} - Update evaluator
Examples
langsmith_count_examples- GET /api/v1/examples/count - Count Exampleslangsmith_read_example- GET /api/v1/examples/{example_id} - Read Examplelangsmith_update_example- PATCH /api/v1/examples/{example_id} - Update Examplelangsmith_delete_example- DELETE /api/v1/examples/{example_id} - Delete Examplelangsmith_read_examples- GET /api/v1/examples - Read Exampleslangsmith_create_example- POST /api/v1/examples - Create Examplelangsmith_delete_examples- DELETE /api/v1/examples - Delete Exampleslangsmith_create_examples- POST /api/v1/examples/bulk - Create Exampleslangsmith_legacy_update_examples- PATCH /api/v1/examples/bulk - Legacy Update Exampleslangsmith_upload_examples_from_csv- POST /api/v1/examples/upload/{dataset_id} - Upload Examples From Csvlangsmith_validate_example- POST /api/v1/examples/validate - Validate Examplelangsmith_validate_examples- POST /api/v1/examples/validate/bulk - Validate Exampleslangsmith_post_v1_platform_datasets_examples- POST /v1/platform/datasets/examples/delete - Hard Delete Exampleslangsmith_post_v1_platform_datasets_dataset_id_examples- POST /v1/platform/datasets/{dataset_id}/examples - Upload Exampleslangsmith_patch_v1_platform_datasets_dataset_id_examples- PATCH /v1/platform/datasets/{dataset_id}/examples - Update Examples
Experiment View Overrides
langsmith_get_datasets_dataset_id_experiment_view_overrides- GET /datasets/{dataset_id}/experiment-view-overrides - Get experiment view override configurations for a datasetlangsmith_post_datasets_dataset_id_experiment_view_overrides- POST /datasets/{dataset_id}/experiment-view-overrides - Create new experiment view override configuration for a datasetlangsmith_get_datasets_dataset_id_experiment_view_overrides_id- GET /datasets/{dataset_id}/experiment-view-overrides/{id} - Get experiment view override configuration by specific IDlangsmith_delete_datasets_dataset_id_experiment_view_overrides_id- DELETE /datasets/{dataset_id}/experiment-view-overrides/{id} - Delete experiment view override configurationlangsmith_patch_datasets_dataset_id_experiment_view_overrides_id- PATCH /datasets/{dataset_id}/experiment-view-overrides/{id} - Update existing experiment view override configuration
Experiments
langsmith_evaluate_experiment_adhoc- POST /api/v1/runs/experiments/{experiment_id}/evaluate - Evaluate Experiment Adhoc
Features
langsmith_get_v1_platform_features- GET /v1/platform/features - List feature configurationslangsmith_put_v1_platform_features_feature_default_model- PUT /v1/platform/features/{feature}/default-model - Set default model for a featurelangsmith_delete_v1_platform_features_feature_default_model- DELETE /v1/platform/features/{feature}/default-model - Delete default model for a featurelangsmith_put_v1_platform_features_feature_disabled_models- PUT /v1/platform/features/{feature}/disabled-models - Disable a model for a featurelangsmith_delete_v1_platform_features_feature_disabled_models_model- DELETE /v1/platform/features/{feature}/disabled-models/{model} - Re-enable a disabled model for a feature
Feedback
langsmith_create_feedback_formula_ep- POST /api/v1/feedback/formulas - Create Feedback Formula Eplangsmith_list_feedback_formula_ep- GET /api/v1/feedback/formulas - List Feedback Formula Eplangsmith_get_feedback_formula_ep- GET /api/v1/feedback/formulas/{feedback_formula_id} - Get Feedback Formula Eplangsmith_update_feedback_formula_ep- PUT /api/v1/feedback/formulas/{feedback_formula_id} - Update Feedback Formula Eplangsmith_delete_feedback_formula_endpoint- DELETE /api/v1/feedback/formulas/{feedback_formula_id} - Delete Feedback Formula Endpointlangsmith_read_feedback- GET /api/v1/feedback/{feedback_id} - Read Feedbacklangsmith_update_feedback- PATCH /api/v1/feedback/{feedback_id} - Update Feedbacklangsmith_delete_feedback- DELETE /api/v1/feedback/{feedback_id} - Delete Feedbacklangsmith_read_feedbacks- GET /api/v1/feedback - Read Feedbackslangsmith_create_feedback- POST /api/v1/feedback - Create Feedbacklangsmith_eagerly_create_feedback- POST /api/v1/feedback/eager - Eagerly Create Feedbacklangsmith_create_feedback_ingest_token- POST /api/v1/feedback/tokens - Create Feedback Ingest Tokenlangsmith_list_feedback_ingest_tokens- GET /api/v1/feedback/tokens - List Feedback Ingest Tokenslangsmith_create_feedback_with_token_get- GET /api/v1/feedback/tokens/{token} - Create Feedback With Token Getlangsmith_create_feedback_with_token_post- POST /api/v1/feedback/tokens/{token} - Create Feedback With Token Post
Feedback Configs
langsmith_list_feedback_configs_endpoint- GET /api/v1/feedback-configs - List Feedback Configs Endpointlangsmith_create_feedback_config_endpoint- POST /api/v1/feedback-configs - Create Feedback Config Endpointlangsmith_update_feedback_config_endpoint- PATCH /api/v1/feedback-configs - Update Feedback Config Endpointlangsmith_delete_feedback_config_endpoint- DELETE /api/v1/feedback-configs - Delete Feedback Config Endpoint
Fleet Auth
langsmith_get_v1_fleet_auth_providers- GET /v1/fleet/auth-providers - List OAuth providerslangsmith_post_v1_fleet_auth_providers- POST /v1/fleet/auth-providers - Register an OAuth providerlangsmith_post_v1_fleet_auth_providers_discover- POST /v1/fleet/auth-providers/discover - Discover and register an OAuth providerlangsmith_get_v1_fleet_auth_providers_provider_id- GET /v1/fleet/auth-providers/{provider_id} - Get an OAuth providerlangsmith_delete_v1_fleet_auth_providers_provider_id- DELETE /v1/fleet/auth-providers/{provider_id} - Delete an OAuth providerlangsmith_patch_v1_fleet_auth_providers_provider_id- PATCH /v1/fleet/auth-providers/{provider_id} - Update an OAuth providerlangsmith_post_v1_fleet_auth_sessions- POST /v1/fleet/auth-sessions - Start an authorization sessionlangsmith_get_v1_fleet_auth_sessions_session_id- GET /v1/fleet/auth-sessions/{session_id} - Get an authorization sessionlangsmith_get_v1_fleet_auth_tokens- GET /v1/fleet/auth-tokens - List your connection tokenslangsmith_post_v1_fleet_auth_tokens_revoke- POST /v1/fleet/auth-tokens/revoke - Revoke connection tokens by filterlangsmith_delete_v1_fleet_auth_tokens_token_id- DELETE /v1/fleet/auth-tokens/{token_id} - Revoke a connection tokenlangsmith_patch_v1_fleet_auth_tokens_token_id- PATCH /v1/fleet/auth-tokens/{token_id} - Update a connection token
Fleet Github App
langsmith_post_v1_platform_fleet_providers_github_app_auth- POST /v1/platform/fleet/providers/github-app/auth - Get GitHub OAuth authorization linklangsmith_get_v1_platform_fleet_providers_github_app_connection- GET /v1/platform/fleet/providers/github-app/connection - Get GitHub user connection statuslangsmith_delete_v1_platform_fleet_providers_github_app_connection- DELETE /v1/platform/fleet/providers/github-app/connection - Delete GitHub user connectionlangsmith_patch_v1_platform_fleet_providers_github_app_connection- PATCH /v1/platform/fleet/providers/github-app/connection - Update GitHub user connectionlangsmith_post_v1_platform_fleet_providers_github_app_install- POST /v1/platform/fleet/providers/github-app/install - Get GitHub App install linklangsmith_get_v1_platform_fleet_providers_github_app_installations- GET /v1/platform/fleet/providers/github-app/installations - List GitHub App installationslangsmith_post_v1_platform_fleet_providers_github_app_installations_refresh- POST /v1/platform/fleet/providers/github-app/installations/refresh - Refresh GitHub App installationslangsmith_delete_v1_platform_fleet_providers_github_app_installations_id- DELETE /v1/platform/fleet/providers/github-app/installations/{id} - Delete a GitHub App installationlangsmith_get_v1_platform_fleet_providers_github_app_installations_id_repos- GET /v1/platform/fleet/providers/github-app/installations/{id}/repos - List repositories for a GitHub App installationlangsmith_post_v1_platform_fleet_providers_github_app_tokens- POST /v1/platform/fleet/providers/github-app/tokens - Request a GitHub access tokenlangsmith_post_v1_platform_fleet_providers_github_app_webhooks- POST /v1/platform/fleet/providers/github-app/webhooks - Handle GitHub App webhook events
Fleet Integrations
langsmith_get_v1_fleet_integrations- GET /v1/fleet/integrations - List integrationslangsmith_post_v1_fleet_integrations- POST /v1/fleet/integrations - Create a custom integrationlangsmith_get_v1_fleet_integrations_id- GET /v1/fleet/integrations/{id} - Get an integrationlangsmith_delete_v1_fleet_integrations_id- DELETE /v1/fleet/integrations/{id} - Delete a custom integrationlangsmith_patch_v1_fleet_integrations_id- PATCH /v1/fleet/integrations/{id} - Update a custom integrationlangsmith_put_v1_fleet_integrations_id_auth_methods- PUT /v1/fleet/integrations/{id}/auth-methods - Replace integration auth methods
Fleet Mcp
langsmith_get_v1_fleet_mcp_servers- GET /v1/fleet/mcp-servers - List MCP serverslangsmith_post_v1_fleet_mcp_servers- POST /v1/fleet/mcp-servers - Create MCP serverlangsmith_get_v1_fleet_mcp_servers_mcp_server_id- GET /v1/fleet/mcp-servers/{mcp_server_id} - Get MCP serverlangsmith_delete_v1_fleet_mcp_servers_mcp_server_id- DELETE /v1/fleet/mcp-servers/{mcp_server_id} - Delete MCP serverlangsmith_patch_v1_fleet_mcp_servers_mcp_server_id- PATCH /v1/fleet/mcp-servers/{mcp_server_id} - Update MCP serverlangsmith_post_v1_fleet_mcp_servers_mcp_server_id_oauth_provider- POST /v1/fleet/mcp-servers/{mcp_server_id}/oauth-provider - Register per-user MCP OAuth providerlangsmith_get_v1_fleet_mcp_tools- GET /v1/fleet/mcp/tools - List MCP toolslangsmith_get_v1_platform_fleet_mcp_servers- GET /v1/platform/fleet/mcp-servers - List MCP serverslangsmith_post_v1_platform_fleet_mcp_servers- POST /v1/platform/fleet/mcp-servers - Create MCP serverlangsmith_get_v1_platform_fleet_mcp_servers_mcp_server_id- GET /v1/platform/fleet/mcp-servers/{mcp_server_id} - Get MCP serverlangsmith_delete_v1_platform_fleet_mcp_servers_mcp_server_id- DELETE /v1/platform/fleet/mcp-servers/{mcp_server_id} - Delete MCP serverlangsmith_patch_v1_platform_fleet_mcp_servers_mcp_server_id- PATCH /v1/platform/fleet/mcp-servers/{mcp_server_id} - Update MCP serverlangsmith_post_v1_platform_fleet_mcp_servers_mcp_server_id_oauth_provider- POST /v1/platform/fleet/mcp-servers/{mcp_server_id}/oauth-provider - Register per-user MCP OAuth provider
Fleet Threads
langsmith_post_v1_fleet_threads- POST /v1/fleet/threads - Create threadlangsmith_get_v1_fleet_threads_threadid- GET /v1/fleet/threads/{threadID} - Get threadlangsmith_post_v1_fleet_threads_threadid_resolve_interrupt- POST /v1/fleet/threads/{threadID}/resolve-interrupt - Resolve an interrupted threadlangsmith_post_v1_fleet_threads_threadid_runs- POST /v1/fleet/threads/{threadID}/runs - Create thread run
Fleet Usage
langsmith_get_v1_platform_fleet_usage_agents- GET /v1/platform/fleet/usage/agents - List fleet agents with usagelangsmith_get_v1_platform_fleet_usage_models- GET /v1/platform/fleet/usage/models - List fleet models with usagelangsmith_get_v1_platform_fleet_usage_tools- GET /v1/platform/fleet/usage/tools - List fleet tools with usagelangsmith_get_v1_platform_fleet_usage_users- GET /v1/platform/fleet/usage/users - List fleet users with usage
Fleet Webhooks
langsmith_post_v1_platform_fleet_webhooks_webhook_id_run- POST /v1/platform/fleet-webhooks/{webhook_id}/run - Run a fleet webhook
Hub Environments
langsmith_get_api_v1_hub_environments- GET /api/v1/hub/environments - List hub environmentslangsmith_post- POST /api/v1/hub/environments - Create hub environments modellangsmith_delete_api_v1_hub_environments_id- DELETE /api/v1/hub/environments/{id} - Delete hub environments modellangsmith_patch- PATCH /api/v1/hub/environments/{id} - Update hub environments model
Info
langsmith_get_server_info- GET /api/v1/info - Get Server Infolangsmith_get_health_info- GET /api/v1/info/health - Get Health Info
Integrations
langsmith_get_v1_agent_builder_integrations- GET /v1/agent-builder/integrations - Get Agent Builder integrations settingslangsmith_put_v1_agent_builder_integrations- PUT /v1/agent-builder/integrations - Update Agent Builder integrations settings
Likes
langsmith_like_repo- POST /api/v1/likes/{owner}/{repo} - Like Repo
Mcp
langsmith_get_tools- GET /api/v1/mcp/tools - Get Toolslangsmith_invalidate_tools_cache- DELETE /api/v1/mcp/tools - Invalidate Tools Cachelangsmith_proxy_get- GET /api/v1/mcp/proxy - Proxy Getlangsmith_proxy- POST /api/v1/mcp/proxy - Proxy
Mcp Vendors
langsmith_get_v1_platform_mcp_vendors- GET /v1/platform/mcp-vendors - List MCP vendorslangsmith_get_v1_platform_mcp_vendors_vendor_slug- GET /v1/platform/mcp-vendors/{vendor_slug} - Get MCP vendorlangsmith_get_v1_platform_mcp_vendors_vendor_slug_account- GET /v1/platform/mcp-vendors/{vendor_slug}/account - Get vendor accountlangsmith_get_v1_platform_mcp_vendors_vendor_slug_mcp_servers- GET /v1/platform/mcp-vendors/{vendor_slug}/mcp-servers - List MCP servers for a vendorlangsmith_get_v1_platform_mcp_vendors_vendor_slug_settings- GET /v1/platform/mcp-vendors/{vendor_slug}/settings - Get vendor settingslangsmith_put_v1_platform_mcp_vendors_vendor_slug_settings- PUT /v1/platform/mcp-vendors/{vendor_slug}/settings - Replace vendor settingslangsmith_post_v1_platform_mcp_vendors_vendor_slug_settings- POST /v1/platform/mcp-vendors/{vendor_slug}/settings - Create vendor settingslangsmith_delete_v1_platform_mcp_vendors_vendor_slug_settings- DELETE /v1/platform/mcp-vendors/{vendor_slug}/settings - Delete vendor settingslangsmith_get_v1_platform_mcp_vendors_vendor_slug_tools- GET /v1/platform/mcp-vendors/{vendor_slug}/tools - List tools for a vendor
Me
langsmith_get_onboarding_state- GET /api/v1/me/onboarding_state - Get Onboarding Statelangsmith_create_onboarding_state- POST /api/v1/me/onboarding_state - Create Onboarding Statelangsmith_update_onboarding_state_field- PUT /api/v1/me/onboarding_state/{field} - Update Onboarding State Fieldlangsmith_get_ls_user_id- GET /api/v1/me/ls_user_id - Get Ls User Idlangsmith_get_me_providers_providertype- GET /me/providers/{providerType} - Get the authenticated user’s provider user ID
Metrics
langsmith_get_queue_metrics- GET /api/v1/metrics/queue/{queue_name} - Get Queue Metrics
Model Price Map
langsmith_read_model_price_map- GET /api/v1/model-price-map - Read Model Price Maplangsmith_create_new_model_price- POST /api/v1/model-price-map - Create New Model Pricelangsmith_update_model_price- PUT /api/v1/model-price-map/{id} - Update Model Pricelangsmith_delete_model_price- DELETE /api/v1/model-price-map/{id} - Delete Model Price
Nps
langsmith_post_v1_platform_nps_response- POST /v1/platform/nps/response - Submit an NPS response
Oauth
langsmith_get_well_known_oauth_authorization_server- GET /.well-known/oauth-authorization-server - Get OAuth2 authorization server metadatalangsmith_get_oauth_authorize- GET /oauth/authorize - Initiate OAuth2 authorizationlangsmith_post_oauth_authorize_approve- POST /oauth/authorize/approve - Approve OAuth2 authorization requestlangsmith_post_oauth_device_authorize- POST /oauth/device/authorize - Authorize a device codelangsmith_post_oauth_device_code- POST /oauth/device/code - Request OAuth2 device authorizationlangsmith_post_oauth_revoke- POST /oauth/revoke - Revoke an OAuth2 tokenlangsmith_post_oauth_token- POST /oauth/token - Exchange grant for OAuth2 tokens
Optimization Jobs
langsmith_list_jobs- GET /api/v1/repos/{owner}/{repo}/optimization-jobs - List Jobslangsmith_create_job- POST /api/v1/repos/{owner}/{repo}/optimization-jobs - Create Joblangsmith_get_job- GET /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id} - Get Joblangsmith_update_job- PATCH /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id} - Update Joblangsmith_delete_job- DELETE /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id} - Delete Joblangsmith_list_job_logs- GET /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs - List Job Logslangsmith_create_log- POST /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs - Create Loglangsmith_get_log- GET /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs/{log_id} - Get Loglangsmith_delete_log- DELETE /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs/{log_id} - Delete Log
Orgs
langsmith_get_api_v1_orgs_ttl_settings- GET /api/v1/orgs/ttl-settings - List Ttl Settingslangsmith_put_api_v1_orgs_ttl_settings- PUT /api/v1/orgs/ttl-settings - Upsert Ttl Settingslangsmith_list_organizations- GET /api/v1/orgs - List Organizationslangsmith_create_organization- POST /api/v1/orgs - Create Organizationlangsmith_create_customers_and_get_stripe_setup_intent- POST /api/v1/orgs/current/setup - Create Customers And Get Stripe Setup Intentlangsmith_get_organization_info- GET /api/v1/orgs/current - Get Organization Infolangsmith_get_current_organization_info- GET /api/v1/orgs/current/info - Get Current Organization Infolangsmith_update_current_organization_info- PATCH /api/v1/orgs/current/info - Update Current Organization Infolangsmith_get_organization_billing_info- GET /api/v1/orgs/current/billing - Get Organization Billing Infolangsmith_get_dashboard- GET /api/v1/orgs/current/dashboard - Get Dashboardlangsmith_on_payment_method_created- POST /api/v1/orgs/current/payment-method - On Payment Method Createdlangsmith_get_company_info- GET /api/v1/orgs/current/business-info - Get Company Infolangsmith_set_company_info- POST /api/v1/orgs/current/business-info - Set Company Infolangsmith_change_payment_plan- POST /api/v1/orgs/current/plan - Change Payment Planlangsmith_list_organization_roles- GET /api/v1/orgs/current/roles - List Organization Roleslangsmith_create_organization_roles- POST /api/v1/orgs/current/roles - Create Organization Roleslangsmith_delete_organization_roles- DELETE /api/v1/orgs/current/roles/{role_id} - Delete Organization Roleslangsmith_update_organization_roles- PATCH /api/v1/orgs/current/roles/{role_id} - Update Organization Roleslangsmith_list_permissions- GET /api/v1/orgs/permissions - List Permissionslangsmith_list_pending_organization_invites- GET /api/v1/orgs/pending - List Pending Organization Inviteslangsmith_get_current_org_members- GET /api/v1/orgs/current/members - Get Current Org Memberslangsmith_add_member_to_current_org- POST /api/v1/orgs/current/members - Add Member To Current Orglangsmith_get_current_active_org_members- GET /api/v1/orgs/current/members/active - Get Current Active Org Memberslangsmith_get_current_pending_org_members- GET /api/v1/orgs/current/members/pending - Get Current Pending Org Memberslangsmith_add_members_to_current_org_batch- POST /api/v1/orgs/current/members/batch - Add Members To Current Org Batchlangsmith_add_basic_auth_members_to_current_org- POST /api/v1/orgs/current/members/basic/batch - Add Basic Auth Members To Current Orglangsmith_delete_current_org_pending_member- DELETE /api/v1/orgs/current/members/{identity_id}/pending - Delete Current Org Pending Memberlangsmith_delete_pending_organization_invite- DELETE /api/v1/orgs/pending/{organization_id} - Delete Pending Organization Invitelangsmith_claim_pending_organization_invite- POST /api/v1/orgs/pending/{organization_id}/claim - Claim Pending Organization Invitelangsmith_remove_member_from_current_org- DELETE /api/v1/orgs/current/members/{identity_id} - Remove Member From Current Orglangsmith_update_current_org_member- PATCH /api/v1/orgs/current/members/{identity_id} - Update Current Org Memberlangsmith_update_current_user- PATCH /api/v1/orgs/members/basic - Update Current Userlangsmith_get_current_sso_settings- GET /api/v1/orgs/current/sso-settings - Get Current Sso Settingslangsmith_create_sso_settings- POST /api/v1/orgs/current/sso-settings - Create Sso Settingslangsmith_update_sso_settings- PATCH /api/v1/orgs/current/sso-settings/{id} - Update Sso Settingslangsmith_delete_sso_settings- DELETE /api/v1/orgs/current/sso-settings/{id} - Delete Sso Settingslangsmith_update_allowed_login_methods- PATCH /api/v1/orgs/current/login-methods - Update Allowed Login Methodslangsmith_get_org_usage- GET /api/v1/orgs/current/billing/usage - Get Org Usagelangsmith_get_granular_usage- GET /api/v1/orgs/current/billing/granular-usage - Get Granular Usagelangsmith_export_granular_usage_csv- GET /api/v1/orgs/current/billing/granular-usage/export - Export Granular Usage Csvlangsmith_get_current_user_login_methods- GET /api/v1/orgs/current/user/login-methods - Get Current User Login Methodslangsmith_create_stripe_checkout_sessions_endpoint- POST /api/v1/orgs/current/stripe_checkout_session - Create Stripe Checkout Sessions Endpointlangsmith_create_stripe_account_links_endpoint- POST /api/v1/orgs/current/stripe_account_links - Create Stripe Account Links Endpointlangsmith_list_org_service_keys- GET /api/v1/orgs/current/service-keys - List Org Service Keyslangsmith_create_org_service_key- POST /api/v1/orgs/current/service-keys - Create Org Service Keylangsmith_delete_org_service_key- DELETE /api/v1/orgs/current/service-keys/{api_key_id} - Delete Org Service Keylangsmith_list_org_personal_access_tokens- GET /api/v1/orgs/current/personal-access-tokens - List Org Personal Access Tokenslangsmith_create_org_personal_access_token- POST /api/v1/orgs/current/personal-access-tokens - Create Org Personal Access Tokenlangsmith_delete_org_personal_access_token- DELETE /api/v1/orgs/current/personal-access-tokens/{pat_id} - Delete Org Personal Access Tokenlangsmith_set_default_sso_provision- POST /api/v1/orgs/current/set-default-sso-provision - Set Default Sso Provisionlangsmith_get_v1_platform_orgs_current_members- GET /v1/platform/orgs/current/members - List org members with workspace roles
Ownerships
langsmith_list_repo_owners- GET /api/v1/repos/{owner}/{repo}/owners - List Repo Ownerslangsmith_add_repo_owner- POST /api/v1/repos/{owner}/{repo}/owners - Add Repo Ownerlangsmith_remove_repo_owner- DELETE /api/v1/repos/{owner}/{repo}/owners - Remove Repo Owner
Playground Settings
langsmith_list_playground_settings- GET /api/v1/playground-settings - List Playground Settingslangsmith_create_playground_settings- POST /api/v1/playground-settings - Create Playground Settingslangsmith_get_playground_settings- GET /api/v1/playground-settings/{playground_settings_id} - Get Playground Settingslangsmith_update_playground_settings- PATCH /api/v1/playground-settings/{playground_settings_id} - Update Playground Settingslangsmith_delete_playground_settings- DELETE /api/v1/playground-settings/{playground_settings_id} - Delete Playground Settings
Prompt Webhooks
langsmith_list_prompt_webhooks- GET /api/v1/prompt-webhooks - List Prompt Webhookslangsmith_create_prompt_webhook- POST /api/v1/prompt-webhooks - Create Prompt Webhooklangsmith_get_prompt_webhook- GET /api/v1/prompt-webhooks/{webhook_id} - Get Prompt Webhooklangsmith_update_prompt_webhook- PATCH /api/v1/prompt-webhooks/{webhook_id} - Update Prompt Webhooklangsmith_delete_prompt_webhook- DELETE /api/v1/prompt-webhooks/{webhook_id} - Delete Prompt Webhooklangsmith_test_prompt_webhook- POST /api/v1/prompt-webhooks/test - Test Prompt Webhook
Prompts
langsmith_invoke_prompt- POST /api/v1/prompts/invoke_prompt - Invoke Promptlangsmith_prompt_canvas- POST /api/v1/prompts/canvas - Prompt Canvas
Public
langsmith_get_shared_run- GET /api/v1/public/{share_token}/run - Get Shared Runlangsmith_get_shared_run_by_id- GET /api/v1/public/{share_token}/run/{id} - Get Shared Run By Idlangsmith_query_shared_runs- POST /api/v1/public/{share_token}/runs/query - Query Shared Runslangsmith_read_shared_feedbacks- GET /api/v1/public/{share_token}/feedbacks - Read Shared Feedbackslangsmith_read_shared_dataset- GET /api/v1/public/{share_token}/datasets - Read Shared Datasetlangsmith_count_shared_examples- GET /api/v1/public/{share_token}/examples/count - Count Shared Exampleslangsmith_read_shared_examples- GET /api/v1/public/{share_token}/examples - Read Shared Exampleslangsmith_read_shared_dataset_tracer_sessions- GET /api/v1/public/{share_token}/datasets/sessions - Read Shared Dataset Tracer Sessionslangsmith_read_shared_dataset_tracer_sessions_bulk- GET /api/v1/public/datasets/sessions-bulk - Read Shared Dataset Tracer Sessions Bulklangsmith_read_shared_dataset_examples_with_runs- POST /api/v1/public/{share_token}/examples/runs - Read Shared Dataset Examples With Runslangsmith_read_shared_delta- POST /api/v1/public/{share_token}/datasets/runs/delta - Read Shared Deltalangsmith_read_shared_delta_stream- POST /api/v1/public/{share_token}/datasets/runs/delta/stream - Read Shared Delta Streamlangsmith_query_shared_dataset_runs- POST /api/v1/public/{share_token}/datasets/runs/query - Query Shared Dataset Runslangsmith_generate_query_for_shared_dataset_runs- POST /api/v1/public/{share_token}/datasets/runs/generate-query - Generate Query For Shared Dataset Runslangsmith_stats_shared_dataset_runs- POST /api/v1/public/{share_token}/datasets/runs/stats - Stats Shared Dataset Runslangsmith_read_shared_dataset_run- GET /api/v1/public/{share_token}/datasets/runs/{run_id} - Read Shared Dataset Runlangsmith_read_shared_dataset_feedback- GET /api/v1/public/{share_token}/datasets/feedback - Read Shared Dataset Feedbacklangsmith_read_shared_comparative_experiments- GET /api/v1/public/{share_token}/datasets/comparative - Read Shared Comparative Experimentslangsmith_get_message_json_schema- GET /api/v1/public/schemas/{version}/message.json - Get Message Json Schemalangsmith_get_tool_def_json_schema- GET /api/v1/public/schemas/{version}/tooldef.json - Get Tool Def Json Schema
Repos
langsmith_list_repos- GET /api/v1/repos - List Reposlangsmith_create_repo- POST /api/v1/repos - Create Repolangsmith_delete_repos- DELETE /api/v1/repos - Delete Reposlangsmith_get_repo- GET /api/v1/repos/{owner}/{repo} - Get Repolangsmith_update_repo- PATCH /api/v1/repos/{owner}/{repo} - Update Repolangsmith_delete_repo- DELETE /api/v1/repos/{owner}/{repo} - Delete Repolangsmith_fork_repo- POST /api/v1/repos/{owner}/{repo}/fork - Fork Repolangsmith_list_repo_tags- GET /api/v1/repos/tags - List Repo Tagslangsmith_optimize_prompt_job- POST /api/v1/repos/optimize-job - Optimize Prompt Job
Run
langsmith_list_rules- GET /api/v1/runs/rules - List Ruleslangsmith_create_rule- POST /api/v1/runs/rules - Create Rulelangsmith_validate_rule- POST /api/v1/runs/rules/validate - Validate Rulelangsmith_update_rule- PATCH /api/v1/runs/rules/{rule_id} - Update Rulelangsmith_delete_rule- DELETE /api/v1/runs/rules/{rule_id} - Delete Rulelangsmith_thread_preview- GET /api/v1/runs/threads/{thread_id} - Thread Previewlangsmith_list_rule_logs- GET /api/v1/runs/rules/{rule_id}/logs - List Rule Logslangsmith_list_rule_logs_v2- GET /api/v1/runs/rules/{rule_id}/logs/v2 - List Rule Logs V2langsmith_get_last_applied_rule- GET /api/v1/runs/rules/{rule_id}/last_applied - Get Last Applied Rulelangsmith_trigger_rule- POST /api/v1/runs/rules/{rule_id}/trigger - Trigger Rulelangsmith_trigger_rules- POST /api/v1/runs/rules/trigger - Trigger Ruleslangsmith_read_run- GET /api/v1/runs/{run_id} - Read Runlangsmith_update_run- PATCH /api/v1/runs/{run_id} - Update Runlangsmith_read_run_share_state- GET /api/v1/runs/{run_id}/share - Read Run Share Statelangsmith_share_run- PUT /api/v1/runs/{run_id}/share - Share Runlangsmith_unshare_run- DELETE /api/v1/runs/{run_id}/share - Unshare Runlangsmith_validate_runs_query- POST /api/v1/runs/query/validate - Validate Runs Querylangsmith_query_runs- POST /api/v1/runs/query - Query Runslangsmith_generate_query_for_runs- POST /api/v1/runs/generate-query - Generate Query For Runslangsmith_stats_runs- POST /api/v1/runs/stats - Stats Runslangsmith_group_runs- POST /api/v1/runs/group - Group Runslangsmith_stats_group_runs- POST /api/v1/runs/group/stats - Stats Group Runslangsmith_delete_runs_abac- POST /api/v1/runs/delete/traces - Delete Runs Abaclangsmith_delete_runs- POST /api/v1/runs/delete - Delete Runs
Runs
langsmith_post_runs- POST /runs - Create a Runlangsmith_post_runs_batch- POST /runs/batch - Ingest Runs (Batch JSON)langsmith_post_runs_multipart- POST /runs/multipart - Ingest Runs (Multipart)langsmith_patch_runs_run_id- PATCH /runs/{run_id} - Update a Runlangsmith_post_v2_runs_query- POST /v2/runs/query - Query runslangsmith_get_v2_runs_run_id- GET /v2/runs/{run_id} - Get a single runlangsmith_get_v2_traces_trace_id_runs- GET /v2/traces/{trace_id}/runs - List runs in a trace
Sandboxes
langsmith_get_v2_sandboxes_boxes- GET /v2/sandboxes/boxes - List sandbox claimslangsmith_post_v2_sandboxes_boxes- POST /v2/sandboxes/boxes - Create a sandbox claimlangsmith_post_v2_sandboxes_boxes_batch- POST /v2/sandboxes/boxes/batch-delete - Batch delete sandbox claimslangsmith_get_v2_sandboxes_boxes_name- GET /v2/sandboxes/boxes/{name} - Get a sandbox claimlangsmith_delete_v2_sandboxes_boxes_name- DELETE /v2/sandboxes/boxes/{name} - Delete a sandbox claimlangsmith_patch_v2_sandboxes_boxes_name- PATCH /v2/sandboxes/boxes/{name} - Update a sandbox claimlangsmith_post_v2_sandboxes_boxes_name_service_url- POST /v2/sandboxes/boxes/{name}/service-url - Generate a service access tokenlangsmith_post_v2_sandboxes_boxes_name_snapshot- POST /v2/sandboxes/boxes/{name}/snapshot - Capture a snapshot from a sandboxlangsmith_post_v2_sandboxes_boxes_name_start- POST /v2/sandboxes/boxes/{name}/start - Start a sandboxlangsmith_get_v2_sandboxes_boxes_name_status- GET /v2/sandboxes/boxes/{name}/status - Get sandbox claim statuslangsmith_post_v2_sandboxes_boxes_name_stop- POST /v2/sandboxes/boxes/{name}/stop - Stop a sandboxlangsmith_get_v2_sandboxes_snapshots- GET /v2/sandboxes/snapshots - List snapshotslangsmith_post_v2_sandboxes_snapshots- POST /v2/sandboxes/snapshots - Create a snapshotlangsmith_get_v2_sandboxes_snapshots_snapshot_id- GET /v2/sandboxes/snapshots/{snapshot_id} - Get a snapshotlangsmith_delete_v2_sandboxes_snapshots_snapshot_id- DELETE /v2/sandboxes/snapshots/{snapshot_id} - Delete a snapshotlangsmith_get_v2_sandboxes_usage- GET /v2/sandboxes/usage - Get sandbox resource usage
Sandboxes Internal
langsmith_post_v2_sandboxes_internal_start_name- POST /v2/sandboxes/internal/start/{name} - Internal: start a stopped sandbox (service-to-service)
Service Accounts
langsmith_get_service_accounts- GET /api/v1/service-accounts - Get Service Accountslangsmith_create_service_account- POST /api/v1/service-accounts - Create Service Accountlangsmith_delete_service_account- DELETE /api/v1/service-accounts/{service_account_id} - Delete Service Account
Sessions
langsmith_get_v1_platform_sessions_sessionid_agent_versions- GET /v1/platform/sessions/{sessionID}/agent-versions - List agent versions for a project
Settings
langsmith_get_settings- GET /api/v1/settings - Get Settingslangsmith_set_tenant_handle- POST /api/v1/settings/handle - Set Tenant Handle
Skills
langsmith_get_v1_fleet_skills- GET /v1/fleet/skills - List skillslangsmith_post_v1_fleet_skills- POST /v1/fleet/skills - Create a skilllangsmith_get_v1_fleet_skills_skillid- GET /v1/fleet/skills/{skillID} - Get a skilllangsmith_put_v1_fleet_skills_skillid- PUT /v1/fleet/skills/{skillID} - Replace a skilllangsmith_delete_v1_fleet_skills_skillid- DELETE /v1/fleet/skills/{skillID} - Delete a skill
Tag Transitions
langsmith_get_repos_owner_repo_tags_tag_name_history- GET /repos/{owner}/{repo}/tags/{tag_name}/history - Get tag transition history
Tags
langsmith_get_tags- GET /api/v1/repos/{owner}/{repo}/tags - Get Tagslangsmith_create_tag- POST /api/v1/repos/{owner}/{repo}/tags - Create Taglangsmith_get_tag- GET /api/v1/repos/{owner}/{repo}/tags/{tag_name} - Get Taglangsmith_update_tag- PATCH /api/v1/repos/{owner}/{repo}/tags/{tag_name} - Update Taglangsmith_delete_tag- DELETE /api/v1/repos/{owner}/{repo}/tags/{tag_name} - Delete Tag
Tenant
langsmith_list_tenants- GET /api/v1/tenants - List Tenantslangsmith_create_tenant- POST /api/v1/tenants - Create Tenant
Threads
langsmith_post_v2_threads_query- POST /v2/threads/query - Query Threadslangsmith_get_v2_threads_thread_id_traces- GET /v2/threads/{thread_id}/traces - Query Thread Traces
Tools
langsmith_get_v1_platform_tools- GET /v1/platform/tools - List toolslangsmith_post_v1_platform_tools- POST /v1/platform/tools - Create a toollangsmith_get_v1_platform_tools_id_id- GET /v1/platform/tools/id/{id} - Get a tool by IDlangsmith_delete_v1_platform_tools_id_id- DELETE /v1/platform/tools/id/{id} - Delete a tool by IDlangsmith_patch_v1_platform_tools_id_id- PATCH /v1/platform/tools/id/{id} - Update a tool by IDlangsmith_get_v1_platform_tools_handle- GET /v1/platform/tools/{handle} - Get a tool by handlelangsmith_delete_v1_platform_tools_handle- DELETE /v1/platform/tools/{handle} - Delete a tool by handlelangsmith_patch_v1_platform_tools_handle- PATCH /v1/platform/tools/{handle} - Update a tool by handle
Tracer Sessions
langsmith_get_tracing_project_prebuilt_dashboard- POST /api/v1/sessions/{session_id}/dashboard - Get Tracing Project Prebuilt Dashboardlangsmith_read_tracer_session- GET /api/v1/sessions/{session_id} - Read Tracer Sessionlangsmith_update_tracer_session- PATCH /api/v1/sessions/{session_id} - Update Tracer Sessionlangsmith_delete_tracer_session- DELETE /api/v1/sessions/{session_id} - Delete Tracer Sessionlangsmith_read_tracer_sessions- GET /api/v1/sessions - Read Tracer Sessionslangsmith_create_tracer_session- POST /api/v1/sessions - Create Tracer Sessionlangsmith_delete_tracer_sessions- DELETE /api/v1/sessions - Delete Tracer Sessionslangsmith_read_tracer_sessions_runs_metadata- GET /api/v1/sessions/{session_id}/metadata - Read Tracer Sessions Runs Metadatalangsmith_read_filter_views- GET /api/v1/sessions/{session_id}/views - Read Filter Viewslangsmith_create_filter_view- POST /api/v1/sessions/{session_id}/views - Create Filter Viewlangsmith_read_filter_view- GET /api/v1/sessions/{session_id}/views/{view_id} - Read Filter Viewlangsmith_update_filter_view- PATCH /api/v1/sessions/{session_id}/views/{view_id} - Update Filter Viewlangsmith_delete_filter_view- DELETE /api/v1/sessions/{session_id}/views/{view_id} - Delete Filter Viewlangsmith_rename_filter_view- PATCH /api/v1/sessions/{session_id}/views/{view_id}/rename - Rename Filter Viewlangsmith_beta_get_insights_jobs- GET /api/v1/sessions/{session_id}/insights - [Beta] Get Insights Jobslangsmith_beta_create_insights_job- POST /api/v1/sessions/{session_id}/insights - [Beta] Create Insights Joblangsmith_beta_get_insights_job_configs- GET /api/v1/sessions/{session_id}/insights/configs - [Beta] Get Insights Job Configslangsmith_beta_create_insights_job_config- POST /api/v1/sessions/{session_id}/insights/configs - [Beta] Create Insights Job Configlangsmith_beta_auto_generate_insights_job_config- POST /api/v1/sessions/{session_id}/insights/configs/generate - [Beta] Auto-Generate Insights Job Configlangsmith_beta_update_insights_job_config- PATCH /api/v1/sessions/{session_id}/insights/configs/{config_id} - [Beta] Update Insights Job Configlangsmith_beta_delete_insights_job_config- DELETE /api/v1/sessions/{session_id}/insights/configs/{config_id} - [Beta] Delete Insights Job Configlangsmith_beta_get_insights_job- GET /api/v1/sessions/{session_id}/insights/{job_id} - [Beta] Get Insights Joblangsmith_beta_update_insights_job- PATCH /api/v1/sessions/{session_id}/insights/{job_id} - [Beta] Update Insights Joblangsmith_beta_delete_insights_job- DELETE /api/v1/sessions/{session_id}/insights/{job_id} - [Beta] Delete Insights Joblangsmith_beta_get_run_cluster_from_insights_job- GET /api/v1/sessions/{session_id}/insights/{job_id}/clusters/{cluster_id} - [Beta] Get Run Cluster From Insights Joblangsmith_beta_get_runs_from_insights_job- GET /api/v1/sessions/{session_id}/insights/{job_id}/runs - [Beta] Get Runs From Insights Job
Ttl Settings
langsmith_list_ttl_settings- GET /api/v1/ttl-settings - List Ttl Settingslangsmith_upsert_ttl_settings- PUT /api/v1/ttl-settings - Upsert Ttl Settings
Usage Limits
langsmith_list_usage_limits- GET /api/v1/usage-limits - List Usage Limitslangsmith_upsert_usage_limit- PUT /api/v1/usage-limits - Upsert Usage Limitlangsmith_list_org_usage_limits- GET /api/v1/usage-limits/org - List Org Usage Limitslangsmith_delete_usage_limit- DELETE /api/v1/usage-limits/{usage_limit_id} - Delete Usage Limit
Workspaces
langsmith_create_workspace- POST /api/v1/workspaces - Create Workspacelangsmith_list_workspaces- GET /api/v1/workspaces - List Workspaceslangsmith_patch_workspace- PATCH /api/v1/workspaces/{workspace_id} - Patch Workspacelangsmith_delete_workspace- DELETE /api/v1/workspaces/{workspace_id} - Delete Workspacelangsmith_get_current_workspace_stats- GET /api/v1/workspaces/current/stats - Get Current Workspace Statslangsmith_get_current_workspace_usage_limits_info- GET /api/v1/workspaces/current/usage_limits - Get Current Workspace Usage Limits Infolangsmith_get_shared_tokens- GET /api/v1/workspaces/current/shared - Get Shared Tokenslangsmith_bulk_unshare_entities- DELETE /api/v1/workspaces/current/shared - Bulk Unshare Entitieslangsmith_list_current_workspace_secrets- GET /api/v1/workspaces/current/secrets - List Current Workspace Secretslangsmith_upsert_current_workspace_secrets- POST /api/v1/workspaces/current/secrets - Upsert Current Workspace Secretslangsmith_get_current_workspace_encrypted_secrets- GET /api/v1/workspaces/current/secrets/encrypted - Get Current Workspace Encrypted Secretslangsmith_list_tag_keys- GET /api/v1/workspaces/current/tag-keys - List Tag Keyslangsmith_create_tag_key- POST /api/v1/workspaces/current/tag-keys - Create Tag Keylangsmith_update_tag_key- PATCH /api/v1/workspaces/current/tag-keys/{tag_key_id} - Update Tag Keylangsmith_get_tag_key- GET /api/v1/workspaces/current/tag-keys/{tag_key_id} - Get Tag Keylangsmith_delete_tag_key- DELETE /api/v1/workspaces/current/tag-keys/{tag_key_id} - Delete Tag Keylangsmith_create_tag_value- POST /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values - Create Tag Valuelangsmith_list_tag_values- GET /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values - List Tag Valueslangsmith_get_tag_value- GET /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values/{tag_value_id} - Get Tag Valuelangsmith_update_tag_value- PATCH /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values/{tag_value_id} - Update Tag Valuelangsmith_delete_tag_value- DELETE /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values/{tag_value_id} - Delete Tag Valuelangsmith_create_tagging- POST /api/v1/workspaces/current/taggings - Create Tagginglangsmith_list_taggings- GET /api/v1/workspaces/current/taggings - List Taggingslangsmith_delete_tagging- DELETE /api/v1/workspaces/current/taggings/{tagging_id} - Delete Tagginglangsmith_list_tags- GET /api/v1/workspaces/current/tags - List Tagslangsmith_list_tags_for_resource- GET /api/v1/workspaces/current/tags/resource - List Tags For Resourcelangsmith_list_tags_for_resources- POST /api/v1/workspaces/current/tags/resources - List Tags For Resourceslangsmith_list_pending_workspace_invites- GET /api/v1/workspaces/pending - List Pending Workspace Inviteslangsmith_delete_pending_workspace_invite- DELETE /api/v1/workspaces/pending/{id} - Delete Pending Workspace Invitelangsmith_claim_pending_workspace_invite- POST /api/v1/workspaces/pending/{workspace_id}/claim - Claim Pending Workspace Invitelangsmith_get_current_workspace_members- GET /api/v1/workspaces/current/members - Get Current Workspace Memberslangsmith_add_member_to_current_workspace- POST /api/v1/workspaces/current/members - Add Member To Current Workspacelangsmith_get_current_active_workspace_members- GET /api/v1/workspaces/current/members/active - Get Current Active Workspace Memberslangsmith_get_current_pending_workspace_members- GET /api/v1/workspaces/current/members/pending - Get Current Pending Workspace Memberslangsmith_add_members_to_current_workspace_batch- POST /api/v1/workspaces/current/members/batch - Add Members To Current Workspace Batchlangsmith_delete_current_workspace_member- DELETE /api/v1/workspaces/current/members/{identity_id} - Delete Current Workspace Memberlangsmith_patch_current_workspace_member- PATCH /api/v1/workspaces/current/members/{identity_id} - Patch Current Workspace Memberlangsmith_delete_current_workspace_pending_member- DELETE /api/v1/workspaces/current/members/{identity_id}/pending - Delete Current Workspace Pending Member
Raw agent markdown
# LangSmith - Lua API Reference
LangSmith tools are exposed under `app.integrations.langsmith`. This package is generated from the official LangSmith OpenAPI document at `https://api.smith.langchain.com/openapi.json` and currently exposes 540 operations.
Configure `api_key` for the `x-api-key` header. Advanced deployments may also set `bearer_token`, `tenant_id` (`x-tenant-id`), `organization_id` (`x-organization-id`), and `base_url` such as `https://eu.api.smith.langchain.com`.
Every endpoint-specific tool accepts path parameters as top-level arguments, known query parameters either as top-level shortcuts or inside `query`, and JSON request bodies inside `body`. Multipart endpoints accept `body.file_path` for local file uploads. Responses are the decoded LangSmith JSON payload, or `{ success = true, status = ... }` for empty successful responses.
## Examples
```lua
local sessions = app.integrations.langsmith.langsmith_read_tracer_sessions({
query = { limit = 10 }
})
local run = app.integrations.langsmith.langsmith_create_run({
body = {
name = "support-agent",
run_type = "chain",
inputs = { question = "hello" },
start_time = "2026-05-06T10:00:00Z"
}
})
local feedback = app.integrations.langsmith.langsmith_create_feedback({
body = { run_id = run.id, key = "quality", score = 1.0 }
})
```
## Multi-Account Usage
```lua
app.integrations.langsmith.langsmith_read_datasets({})
app.integrations.langsmith.default.langsmith_read_datasets({})
app.integrations.langsmith.production.langsmith_read_datasets({})
```
## LangSmith
- `langsmith_get_api_v1_ok` - GET /api/v1/ok - Ok
## Organizations
- `langsmith_get_v1_platform_orgs_current_info` - GET /v1/platform/orgs/current/info - Get current organization info
## SCIM Tokens
- `langsmith_get_v1_platform_orgs_current_scim_tokens` - GET /v1/platform/orgs/current/scim/tokens - List SCIM tokens
- `langsmith_post_v1_platform_orgs_current_scim_tokens` - POST /v1/platform/orgs/current/scim/tokens - Create a SCIM token
- `langsmith_get_v1_platform_orgs_current_scim_tokens_scim_token_id` - GET /v1/platform/orgs/current/scim/tokens/{scim_token_id} - Get a SCIM token
- `langsmith_delete_v1_platform_orgs_current_scim_tokens_scim_token_id` - DELETE /v1/platform/orgs/current/scim/tokens/{scim_token_id} - Delete a SCIM token
- `langsmith_patch_v1_platform_orgs_current_scim_tokens_scim_token_id` - PATCH /v1/platform/orgs/current/scim/tokens/{scim_token_id} - Update a SCIM token
## TTL Settings
- `langsmith_get_workspaces_current_ttl_settings` - GET /workspaces/current/ttl-settings - Get workspace TTL settings
- `langsmith_put_workspaces_current_ttl_settings` - PUT /workspaces/current/ttl-settings - Update workspace TTL settings
## Access Policies
- `langsmith_get_v1_platform_orgs_current_access_policies` - GET /v1/platform/orgs/current/access-policies - List access policies
- `langsmith_post_v1_platform_orgs_current_access_policies` - POST /v1/platform/orgs/current/access-policies - Create an access policy
- `langsmith_post_v1_platform_orgs_current_access_policies_roles_role_id_access_policies` - POST /v1/platform/orgs/current/access-policies/roles/{role_id}/access-policies - Attach access policies to a role
- `langsmith_get_v1_platform_orgs_current_access_policies_access_policy_id` - GET /v1/platform/orgs/current/access-policies/{access_policy_id} - Get an access policy
- `langsmith_delete_v1_platform_orgs_current_access_policies_access_policy_id` - DELETE /v1/platform/orgs/current/access-policies/{access_policy_id} - Delete an access policy
## Ace
- `langsmith_execute` - POST /api/v1/ace/execute - Execute
## Agents
- `langsmith_get_v1_fleet_agents` - GET /v1/fleet/agents - List agents
- `langsmith_post_v1_fleet_agents` - POST /v1/fleet/agents - Create an agent
- `langsmith_get_v1_fleet_agents_agentid` - GET /v1/fleet/agents/{agentID} - Get an agent
- `langsmith_patch_v1_fleet_agents_agentid` - PATCH /v1/fleet/agents/{agentID} - Update an agent
## Alert Rules
- `langsmith_post_v1_platform_alerts_session_id` - POST /v1/platform/alerts/{session_id} - Create an alert rule
- `langsmith_post_v1_platform_alerts_session_id_test` - POST /v1/platform/alerts/{session_id}/test - Test an alert action to determine if configuration is valid
- `langsmith_get_v1_platform_alerts_session_id_alert_rule_id` - GET /v1/platform/alerts/{session_id}/{alert_rule_id} - Get an alert rule
- `langsmith_delete_v1_platform_alerts_session_id_alert_rule_id` - DELETE /v1/platform/alerts/{session_id}/{alert_rule_id} - Delete an alert rule
- `langsmith_patch_v1_platform_alerts_session_id_alert_rule_id` - PATCH /v1/platform/alerts/{session_id}/{alert_rule_id} - Update an alert rule
## Annotation Queues
- `langsmith_get_annotation_queues` - GET /api/v1/annotation-queues - Get Annotation Queues
- `langsmith_create_annotation_queue` - POST /api/v1/annotation-queues - Create Annotation Queue
- `langsmith_delete_annotation_queues` - DELETE /api/v1/annotation-queues - Delete Annotation Queues
- `langsmith_populate_annotation_queue` - POST /api/v1/annotation-queues/populate - Populate Annotation Queue
- `langsmith_delete_annotation_queue` - DELETE /api/v1/annotation-queues/{queue_id} - Delete Annotation Queue
- `langsmith_update_annotation_queue` - PATCH /api/v1/annotation-queues/{queue_id} - Update Annotation Queue
- `langsmith_get_annotation_queue` - GET /api/v1/annotation-queues/{queue_id} - Get Annotation Queue
- `langsmith_add_runs_to_annotation_queue` - POST /api/v1/annotation-queues/{queue_id}/runs - Add Runs To Annotation Queue
- `langsmith_get_runs_from_annotation_queue` - GET /api/v1/annotation-queues/{queue_id}/runs - Get Runs From Annotation Queue
- `langsmith_add_runs_to_annotation_queue_by_key` - POST /api/v1/annotation-queues/{queue_id}/runs/by-key - Add Runs To Annotation Queue By Key
- `langsmith_export_annotation_queue_archived_runs` - POST /api/v1/annotation-queues/{queue_id}/export - Export Annotation Queue Archived Runs
- `langsmith_get_run_from_annotation_queue` - GET /api/v1/annotation-queues/{queue_id}/run/{index} - Get Run From Annotation Queue
- `langsmith_get_annotation_queues_for_run` - GET /api/v1/annotation-queues/{run_id}/queues - Get Annotation Queues For Run
- `langsmith_update_run_in_annotation_queue` - PATCH /api/v1/annotation-queues/{queue_id}/runs/{queue_run_id} - Update Run In Annotation Queue
- `langsmith_delete_run_from_annotation_queue` - DELETE /api/v1/annotation-queues/{queue_id}/runs/{queue_run_id} - Delete Run From Annotation Queue
- `langsmith_delete_runs_from_annotation_queue` - POST /api/v1/annotation-queues/{queue_id}/runs/delete - Delete Runs From Annotation Queue
- `langsmith_get_total_size_from_annotation_queue` - GET /api/v1/annotation-queues/{queue_id}/total_size - Get Total Size From Annotation Queue
- `langsmith_get_total_archived_from_annotation_queue` - GET /api/v1/annotation-queues/{queue_id}/total_archived - Get Total Archived From Annotation Queue
- `langsmith_get_size_from_annotation_queue` - GET /api/v1/annotation-queues/{queue_id}/size - Get Size From Annotation Queue
- `langsmith_create_identity_annotation_queue_run_status` - POST /api/v1/annotation-queues/status/{annotation_queue_run_id} - Create Identity Annotation Queue Run Status
- `langsmith_resolve_annotation_queue_run` - GET /api/v1/annotation-queues/{queue_id}/runs/resolve/{queue_run_id} - Resolve Annotation Queue Run
## Annotation Queues
- `langsmith_post_v1_platform_annotation_queues_queue_id_reviewers` - POST /v1/platform/annotation-queues/{queue_id}/reviewers - Add a reviewer to an annotation queue
- `langsmith_delete_v1_platform_annotation_queues_queue_id_reviewers_identity_id` - DELETE /v1/platform/annotation-queues/{queue_id}/reviewers/{identity_id} - Remove a reviewer from an annotation queue
## Api Key
- `langsmith_get_api_v1_api_key` - GET /api/v1/api-key - Get Api Keys
- `langsmith_post_api_v1_api_key` - POST /api/v1/api-key - Generate Api Key
- `langsmith_delete` - DELETE /api/v1/api-key/{api_key_id} - Delete Api Key
- `langsmith_get_personal_access_tokens` - GET /api/v1/api-key/current - Get Personal Access Tokens
- `langsmith_generate_personal_access_token` - POST /api/v1/api-key/current - Generate Personal Access Token
- `langsmith_delete_personal_access_token` - DELETE /api/v1/api-key/current/{pat_id} - Delete Personal Access Token
## Audit Logs
- `langsmith_get_audit_logs` - GET /api/v1/audit-logs - Get Audit Logs
## Auth
- `langsmith_login` - POST /api/v1/login - Login
- `langsmith_send_sso_email_confirmation` - POST /api/v1/sso/email-verification/send - Send Sso Email Confirmation
- `langsmith_check_sso_email_verification_status` - POST /api/v1/sso/email-verification/status - Check Sso Email Verification Status
- `langsmith_confirm_sso_user_email` - POST /api/v1/sso/email-verification/confirm - Confirm Sso User Email
- `langsmith_get_sso_settings` - GET /api/v1/sso/settings/{sso_login_slug} - Get Sso Settings
- `langsmith_lookup_sso_by_email` - POST /api/v1/sso/email-lookup - Lookup Sso By Email
- `langsmith_get_auth_public` - GET /auth/public - Get public auth info
## Aws Marketplace
- `langsmith_post_aws_marketplace_register` - POST /aws-marketplace/register - AWS Marketplace fulfillment URL registration
## Backfills
- `langsmith_post_v1_platform_ops_backfills_restart` - POST /v1/platform/ops/backfills/restart - Restart a backfill job
## Beacon
- `langsmith_post_v1_beacon_usage_snapshot` - POST /v1/beacon/usage-snapshot - Submit a self-hosted usage snapshot
## Bulk Exports
- `langsmith_get_bulk_exports` - GET /api/v1/bulk-exports - Get Bulk Exports
- `langsmith_create_bulk_export` - POST /api/v1/bulk-exports - Create Bulk Export
- `langsmith_get_bulk_export_destinations` - GET /api/v1/bulk-exports/destinations - Get Bulk Export Destinations
- `langsmith_create_bulk_export_destination` - POST /api/v1/bulk-exports/destinations - Create Bulk Export Destination
- `langsmith_get_bulk_export_runs_filtered` - GET /api/v1/bulk-exports/runs - Get Bulk Export Runs Filtered
- `langsmith_get_bulk_export` - GET /api/v1/bulk-exports/{bulk_export_id} - Get Bulk Export
- `langsmith_cancel_bulk_export` - PATCH /api/v1/bulk-exports/{bulk_export_id} - Cancel Bulk Export
- `langsmith_get_bulk_export_destination` - GET /api/v1/bulk-exports/destinations/{destination_id} - Get Bulk Export Destination
- `langsmith_update_bulk_export_destination` - PATCH /api/v1/bulk-exports/destinations/{destination_id} - Update Bulk Export Destination
- `langsmith_get_bulk_export_runs` - GET /api/v1/bulk-exports/{bulk_export_id}/runs - Get Bulk Export Runs
- `langsmith_get_bulk_export_run` - GET /api/v1/bulk-exports/{bulk_export_id}/runs/{run_id} - Get Bulk Export Run
## Charts
- `langsmith_clone_section` - POST /api/v1/charts/section/clone - Clone Section
- `langsmith_read_sections` - GET /api/v1/charts/section - Read Sections
- `langsmith_create_section` - POST /api/v1/charts/section - Create Section
- `langsmith_read_charts` - POST /api/v1/charts - Read Charts
- `langsmith_read_chart_preview` - POST /api/v1/charts/preview - Read Chart Preview
- `langsmith_create_chart` - POST /api/v1/charts/create - Create Chart
- `langsmith_read_single_chart` - POST /api/v1/charts/{chart_id} - Read Single Chart
- `langsmith_update_chart` - PATCH /api/v1/charts/{chart_id} - Update Chart
- `langsmith_delete_chart` - DELETE /api/v1/charts/{chart_id} - Delete Chart
- `langsmith_read_single_section` - POST /api/v1/charts/section/{section_id} - Read Single Section
- `langsmith_update_section` - PATCH /api/v1/charts/section/{section_id} - Update Section
- `langsmith_delete_section` - DELETE /api/v1/charts/section/{section_id} - Delete Section
- `langsmith_org_read_sections` - GET /api/v1/org-charts/section - Org Read Sections
- `langsmith_org_create_section` - POST /api/v1/org-charts/section - Org Create Section
- `langsmith_org_read_charts` - POST /api/v1/org-charts - Org Read Charts
- `langsmith_org_read_chart_preview` - POST /api/v1/org-charts/preview - Org Read Chart Preview
- `langsmith_org_create_chart` - POST /api/v1/org-charts/create - Org Create Chart
- `langsmith_org_read_single_chart` - POST /api/v1/org-charts/{chart_id} - Org Read Single Chart
- `langsmith_org_update_chart` - PATCH /api/v1/org-charts/{chart_id} - Org Update Chart
- `langsmith_org_delete_chart` - DELETE /api/v1/org-charts/{chart_id} - Org Delete Chart
- `langsmith_org_read_single_section` - POST /api/v1/org-charts/section/{section_id} - Org Read Single Section
- `langsmith_org_update_section` - PATCH /api/v1/org-charts/section/{section_id} - Org Update Section
- `langsmith_org_delete_section` - DELETE /api/v1/org-charts/section/{section_id} - Org Delete Section
## Comments
- `langsmith_create_comment` - POST /api/v1/comments/{owner}/{repo} - Create Comment
- `langsmith_get_comments` - GET /api/v1/comments/{owner}/{repo} - Get Comments
- `langsmith_get_sub_comments` - GET /api/v1/comments/{owner}/{repo}/{parent_comment_id} - Get Sub Comments
- `langsmith_create_sub_comment` - POST /api/v1/comments/{owner}/{repo}/{parent_comment_id} - Create Sub Comment
- `langsmith_like_comment` - POST /api/v1/comments/{owner}/{repo}/{parent_comment_id}/like - Like Comment
- `langsmith_unlike_comment` - DELETE /api/v1/comments/{owner}/{repo}/{parent_comment_id}/like - Unlike Comment
## Commits
- `langsmith_get_commits_owner_repo` - GET /commits/{owner}/{repo} - List commits
- `langsmith_post_commits_owner_repo` - POST /commits/{owner}/{repo} - Create a commit
- `langsmith_get_commits_owner_repo_commit` - GET /commits/{owner}/{repo}/{commit} - Get a commit
## Data Planes
- `langsmith_get_v1_platform_orgs_current_data_planes` - GET /v1/platform/orgs/current/data-planes - List data planes for the current organization
## Datasets
- `langsmith_read_datasets` - GET /api/v1/datasets - Read Datasets
- `langsmith_create_dataset` - POST /api/v1/datasets - Create Dataset
- `langsmith_delete_datasets` - DELETE /api/v1/datasets - Delete Datasets
- `langsmith_read_datasets_stream` - GET /api/v1/datasets/stream - Read Datasets Stream
- `langsmith_read_dataset` - GET /api/v1/datasets/{dataset_id} - Read Dataset
- `langsmith_delete_dataset` - DELETE /api/v1/datasets/{dataset_id} - Delete Dataset
- `langsmith_update_dataset` - PATCH /api/v1/datasets/{dataset_id} - Update Dataset
- `langsmith_upload_csv_dataset` - POST /api/v1/datasets/upload - Upload Csv Dataset
- `langsmith_upload_experiment` - POST /api/v1/datasets/upload-experiment - Upload Experiment
- `langsmith_get_dataset_versions` - GET /api/v1/datasets/{dataset_id}/versions - Get Dataset Versions
- `langsmith_diff_dataset_versions` - GET /api/v1/datasets/{dataset_id}/versions/diff - Diff Dataset Versions
- `langsmith_get_dataset_version` - GET /api/v1/datasets/{dataset_id}/version - Get Dataset Version
- `langsmith_update_dataset_version` - PUT /api/v1/datasets/{dataset_id}/tags - Update Dataset Version
- `langsmith_download_dataset_openai` - GET /api/v1/datasets/{dataset_id}/openai - Download Dataset Openai
- `langsmith_download_dataset_openai_ft` - GET /api/v1/datasets/{dataset_id}/openai_ft - Download Dataset Openai Ft
- `langsmith_download_dataset_csv` - GET /api/v1/datasets/{dataset_id}/csv - Download Dataset Csv
- `langsmith_download_dataset_jsonl` - GET /api/v1/datasets/{dataset_id}/jsonl - Download Dataset Jsonl
- `langsmith_read_examples_with_runs` - POST /api/v1/datasets/{dataset_id}/runs - Read Examples With Runs
- `langsmith_read_examples_with_runs_grouped` - POST /api/v1/datasets/{dataset_id}/group/runs - Read Examples With Runs Grouped
- `langsmith_read_delta` - POST /api/v1/datasets/{dataset_id}/runs/delta - Read Delta
- `langsmith_read_delta_stream` - POST /api/v1/datasets/{dataset_id}/runs/delta/stream - Read Delta Stream
- `langsmith_read_grouped_experiments` - POST /api/v1/datasets/{dataset_id}/experiments/grouped - Read Grouped Experiments
- `langsmith_read_dataset_share_state` - GET /api/v1/datasets/{dataset_id}/share - Read Dataset Share State
- `langsmith_share_dataset` - PUT /api/v1/datasets/{dataset_id}/share - Share Dataset
- `langsmith_unshare_dataset` - DELETE /api/v1/datasets/{dataset_id}/share - Unshare Dataset
- `langsmith_read_comparative_experiments` - GET /api/v1/datasets/{dataset_id}/comparative - Read Comparative Experiments
- `langsmith_create_comparative_experiment` - POST /api/v1/datasets/comparative - Create Comparative Experiment
- `langsmith_delete_comparative_experiment` - DELETE /api/v1/datasets/comparative/{comparative_experiment_id} - Delete Comparative Experiment
- `langsmith_clone_dataset` - POST /api/v1/datasets/clone - Clone Dataset
- `langsmith_get_dataset_splits` - GET /api/v1/datasets/{dataset_id}/splits - Get Dataset Splits
- `langsmith_update_dataset_splits` - PUT /api/v1/datasets/{dataset_id}/splits - Update Dataset Splits
- `langsmith_generate` - POST /api/v1/datasets/{dataset_id}/generate - Generate
- `langsmith_dataset_handler` - POST /api/v1/datasets/playground_experiment/batch - Dataset Handler
- `langsmith_stream_dataset_handler` - POST /api/v1/datasets/playground_experiment/stream - Stream Dataset Handler
- `langsmith_studio_experiment` - POST /api/v1/datasets/studio_experiment - Studio Experiment
## Directories
- `langsmith_get_v1_platform_hub_repos_owner_repo_directories` - GET /v1/platform/hub/repos/{owner}/{repo}/directories - Get directory contents
- `langsmith_delete_v1_platform_hub_repos_owner_repo_directories` - DELETE /v1/platform/hub/repos/{owner}/{repo}/directories - Delete directory repository
- `langsmith_post_v1_platform_hub_repos_owner_repo_directories_commits` - POST /v1/platform/hub/repos/{owner}/{repo}/directories/commits - Create directory commit
## Evaluators
- `langsmith_get_v1_platform_evaluators` - GET /v1/platform/evaluators - List evaluators
- `langsmith_post_v1_platform_evaluators` - POST /v1/platform/evaluators - Create evaluator
- `langsmith_delete_v1_platform_evaluators` - DELETE /v1/platform/evaluators - Bulk delete evaluators
- `langsmith_get_v1_platform_evaluators_evaluator_id` - GET /v1/platform/evaluators/{evaluator_id} - Get evaluator
- `langsmith_delete_v1_platform_evaluators_evaluator_id` - DELETE /v1/platform/evaluators/{evaluator_id} - Delete evaluator
- `langsmith_patch_v1_platform_evaluators_evaluator_id` - PATCH /v1/platform/evaluators/{evaluator_id} - Update evaluator
## Examples
- `langsmith_count_examples` - GET /api/v1/examples/count - Count Examples
- `langsmith_read_example` - GET /api/v1/examples/{example_id} - Read Example
- `langsmith_update_example` - PATCH /api/v1/examples/{example_id} - Update Example
- `langsmith_delete_example` - DELETE /api/v1/examples/{example_id} - Delete Example
- `langsmith_read_examples` - GET /api/v1/examples - Read Examples
- `langsmith_create_example` - POST /api/v1/examples - Create Example
- `langsmith_delete_examples` - DELETE /api/v1/examples - Delete Examples
- `langsmith_create_examples` - POST /api/v1/examples/bulk - Create Examples
- `langsmith_legacy_update_examples` - PATCH /api/v1/examples/bulk - Legacy Update Examples
- `langsmith_upload_examples_from_csv` - POST /api/v1/examples/upload/{dataset_id} - Upload Examples From Csv
- `langsmith_validate_example` - POST /api/v1/examples/validate - Validate Example
- `langsmith_validate_examples` - POST /api/v1/examples/validate/bulk - Validate Examples
- `langsmith_post_v1_platform_datasets_examples` - POST /v1/platform/datasets/examples/delete - Hard Delete Examples
- `langsmith_post_v1_platform_datasets_dataset_id_examples` - POST /v1/platform/datasets/{dataset_id}/examples - Upload Examples
- `langsmith_patch_v1_platform_datasets_dataset_id_examples` - PATCH /v1/platform/datasets/{dataset_id}/examples - Update Examples
## Experiment View Overrides
- `langsmith_get_datasets_dataset_id_experiment_view_overrides` - GET /datasets/{dataset_id}/experiment-view-overrides - Get experiment view override configurations for a dataset
- `langsmith_post_datasets_dataset_id_experiment_view_overrides` - POST /datasets/{dataset_id}/experiment-view-overrides - Create new experiment view override configuration for a dataset
- `langsmith_get_datasets_dataset_id_experiment_view_overrides_id` - GET /datasets/{dataset_id}/experiment-view-overrides/{id} - Get experiment view override configuration by specific ID
- `langsmith_delete_datasets_dataset_id_experiment_view_overrides_id` - DELETE /datasets/{dataset_id}/experiment-view-overrides/{id} - Delete experiment view override configuration
- `langsmith_patch_datasets_dataset_id_experiment_view_overrides_id` - PATCH /datasets/{dataset_id}/experiment-view-overrides/{id} - Update existing experiment view override configuration
## Experiments
- `langsmith_evaluate_experiment_adhoc` - POST /api/v1/runs/experiments/{experiment_id}/evaluate - Evaluate Experiment Adhoc
## Features
- `langsmith_get_v1_platform_features` - GET /v1/platform/features - List feature configurations
- `langsmith_put_v1_platform_features_feature_default_model` - PUT /v1/platform/features/{feature}/default-model - Set default model for a feature
- `langsmith_delete_v1_platform_features_feature_default_model` - DELETE /v1/platform/features/{feature}/default-model - Delete default model for a feature
- `langsmith_put_v1_platform_features_feature_disabled_models` - PUT /v1/platform/features/{feature}/disabled-models - Disable a model for a feature
- `langsmith_delete_v1_platform_features_feature_disabled_models_model` - DELETE /v1/platform/features/{feature}/disabled-models/{model} - Re-enable a disabled model for a feature
## Feedback
- `langsmith_create_feedback_formula_ep` - POST /api/v1/feedback/formulas - Create Feedback Formula Ep
- `langsmith_list_feedback_formula_ep` - GET /api/v1/feedback/formulas - List Feedback Formula Ep
- `langsmith_get_feedback_formula_ep` - GET /api/v1/feedback/formulas/{feedback_formula_id} - Get Feedback Formula Ep
- `langsmith_update_feedback_formula_ep` - PUT /api/v1/feedback/formulas/{feedback_formula_id} - Update Feedback Formula Ep
- `langsmith_delete_feedback_formula_endpoint` - DELETE /api/v1/feedback/formulas/{feedback_formula_id} - Delete Feedback Formula Endpoint
- `langsmith_read_feedback` - GET /api/v1/feedback/{feedback_id} - Read Feedback
- `langsmith_update_feedback` - PATCH /api/v1/feedback/{feedback_id} - Update Feedback
- `langsmith_delete_feedback` - DELETE /api/v1/feedback/{feedback_id} - Delete Feedback
- `langsmith_read_feedbacks` - GET /api/v1/feedback - Read Feedbacks
- `langsmith_create_feedback` - POST /api/v1/feedback - Create Feedback
- `langsmith_eagerly_create_feedback` - POST /api/v1/feedback/eager - Eagerly Create Feedback
- `langsmith_create_feedback_ingest_token` - POST /api/v1/feedback/tokens - Create Feedback Ingest Token
- `langsmith_list_feedback_ingest_tokens` - GET /api/v1/feedback/tokens - List Feedback Ingest Tokens
- `langsmith_create_feedback_with_token_get` - GET /api/v1/feedback/tokens/{token} - Create Feedback With Token Get
- `langsmith_create_feedback_with_token_post` - POST /api/v1/feedback/tokens/{token} - Create Feedback With Token Post
## Feedback Configs
- `langsmith_list_feedback_configs_endpoint` - GET /api/v1/feedback-configs - List Feedback Configs Endpoint
- `langsmith_create_feedback_config_endpoint` - POST /api/v1/feedback-configs - Create Feedback Config Endpoint
- `langsmith_update_feedback_config_endpoint` - PATCH /api/v1/feedback-configs - Update Feedback Config Endpoint
- `langsmith_delete_feedback_config_endpoint` - DELETE /api/v1/feedback-configs - Delete Feedback Config Endpoint
## Fleet Auth
- `langsmith_get_v1_fleet_auth_providers` - GET /v1/fleet/auth-providers - List OAuth providers
- `langsmith_post_v1_fleet_auth_providers` - POST /v1/fleet/auth-providers - Register an OAuth provider
- `langsmith_post_v1_fleet_auth_providers_discover` - POST /v1/fleet/auth-providers/discover - Discover and register an OAuth provider
- `langsmith_get_v1_fleet_auth_providers_provider_id` - GET /v1/fleet/auth-providers/{provider_id} - Get an OAuth provider
- `langsmith_delete_v1_fleet_auth_providers_provider_id` - DELETE /v1/fleet/auth-providers/{provider_id} - Delete an OAuth provider
- `langsmith_patch_v1_fleet_auth_providers_provider_id` - PATCH /v1/fleet/auth-providers/{provider_id} - Update an OAuth provider
- `langsmith_post_v1_fleet_auth_sessions` - POST /v1/fleet/auth-sessions - Start an authorization session
- `langsmith_get_v1_fleet_auth_sessions_session_id` - GET /v1/fleet/auth-sessions/{session_id} - Get an authorization session
- `langsmith_get_v1_fleet_auth_tokens` - GET /v1/fleet/auth-tokens - List your connection tokens
- `langsmith_post_v1_fleet_auth_tokens_revoke` - POST /v1/fleet/auth-tokens/revoke - Revoke connection tokens by filter
- `langsmith_delete_v1_fleet_auth_tokens_token_id` - DELETE /v1/fleet/auth-tokens/{token_id} - Revoke a connection token
- `langsmith_patch_v1_fleet_auth_tokens_token_id` - PATCH /v1/fleet/auth-tokens/{token_id} - Update a connection token
## Fleet Github App
- `langsmith_post_v1_platform_fleet_providers_github_app_auth` - POST /v1/platform/fleet/providers/github-app/auth - Get GitHub OAuth authorization link
- `langsmith_get_v1_platform_fleet_providers_github_app_connection` - GET /v1/platform/fleet/providers/github-app/connection - Get GitHub user connection status
- `langsmith_delete_v1_platform_fleet_providers_github_app_connection` - DELETE /v1/platform/fleet/providers/github-app/connection - Delete GitHub user connection
- `langsmith_patch_v1_platform_fleet_providers_github_app_connection` - PATCH /v1/platform/fleet/providers/github-app/connection - Update GitHub user connection
- `langsmith_post_v1_platform_fleet_providers_github_app_install` - POST /v1/platform/fleet/providers/github-app/install - Get GitHub App install link
- `langsmith_get_v1_platform_fleet_providers_github_app_installations` - GET /v1/platform/fleet/providers/github-app/installations - List GitHub App installations
- `langsmith_post_v1_platform_fleet_providers_github_app_installations_refresh` - POST /v1/platform/fleet/providers/github-app/installations/refresh - Refresh GitHub App installations
- `langsmith_delete_v1_platform_fleet_providers_github_app_installations_id` - DELETE /v1/platform/fleet/providers/github-app/installations/{id} - Delete a GitHub App installation
- `langsmith_get_v1_platform_fleet_providers_github_app_installations_id_repos` - GET /v1/platform/fleet/providers/github-app/installations/{id}/repos - List repositories for a GitHub App installation
- `langsmith_post_v1_platform_fleet_providers_github_app_tokens` - POST /v1/platform/fleet/providers/github-app/tokens - Request a GitHub access token
- `langsmith_post_v1_platform_fleet_providers_github_app_webhooks` - POST /v1/platform/fleet/providers/github-app/webhooks - Handle GitHub App webhook events
## Fleet Integrations
- `langsmith_get_v1_fleet_integrations` - GET /v1/fleet/integrations - List integrations
- `langsmith_post_v1_fleet_integrations` - POST /v1/fleet/integrations - Create a custom integration
- `langsmith_get_v1_fleet_integrations_id` - GET /v1/fleet/integrations/{id} - Get an integration
- `langsmith_delete_v1_fleet_integrations_id` - DELETE /v1/fleet/integrations/{id} - Delete a custom integration
- `langsmith_patch_v1_fleet_integrations_id` - PATCH /v1/fleet/integrations/{id} - Update a custom integration
- `langsmith_put_v1_fleet_integrations_id_auth_methods` - PUT /v1/fleet/integrations/{id}/auth-methods - Replace integration auth methods
## Fleet Mcp
- `langsmith_get_v1_fleet_mcp_servers` - GET /v1/fleet/mcp-servers - List MCP servers
- `langsmith_post_v1_fleet_mcp_servers` - POST /v1/fleet/mcp-servers - Create MCP server
- `langsmith_get_v1_fleet_mcp_servers_mcp_server_id` - GET /v1/fleet/mcp-servers/{mcp_server_id} - Get MCP server
- `langsmith_delete_v1_fleet_mcp_servers_mcp_server_id` - DELETE /v1/fleet/mcp-servers/{mcp_server_id} - Delete MCP server
- `langsmith_patch_v1_fleet_mcp_servers_mcp_server_id` - PATCH /v1/fleet/mcp-servers/{mcp_server_id} - Update MCP server
- `langsmith_post_v1_fleet_mcp_servers_mcp_server_id_oauth_provider` - POST /v1/fleet/mcp-servers/{mcp_server_id}/oauth-provider - Register per-user MCP OAuth provider
- `langsmith_get_v1_fleet_mcp_tools` - GET /v1/fleet/mcp/tools - List MCP tools
- `langsmith_get_v1_platform_fleet_mcp_servers` - GET /v1/platform/fleet/mcp-servers - List MCP servers
- `langsmith_post_v1_platform_fleet_mcp_servers` - POST /v1/platform/fleet/mcp-servers - Create MCP server
- `langsmith_get_v1_platform_fleet_mcp_servers_mcp_server_id` - GET /v1/platform/fleet/mcp-servers/{mcp_server_id} - Get MCP server
- `langsmith_delete_v1_platform_fleet_mcp_servers_mcp_server_id` - DELETE /v1/platform/fleet/mcp-servers/{mcp_server_id} - Delete MCP server
- `langsmith_patch_v1_platform_fleet_mcp_servers_mcp_server_id` - PATCH /v1/platform/fleet/mcp-servers/{mcp_server_id} - Update MCP server
- `langsmith_post_v1_platform_fleet_mcp_servers_mcp_server_id_oauth_provider` - POST /v1/platform/fleet/mcp-servers/{mcp_server_id}/oauth-provider - Register per-user MCP OAuth provider
## Fleet Threads
- `langsmith_post_v1_fleet_threads` - POST /v1/fleet/threads - Create thread
- `langsmith_get_v1_fleet_threads_threadid` - GET /v1/fleet/threads/{threadID} - Get thread
- `langsmith_post_v1_fleet_threads_threadid_resolve_interrupt` - POST /v1/fleet/threads/{threadID}/resolve-interrupt - Resolve an interrupted thread
- `langsmith_post_v1_fleet_threads_threadid_runs` - POST /v1/fleet/threads/{threadID}/runs - Create thread run
## Fleet Usage
- `langsmith_get_v1_platform_fleet_usage_agents` - GET /v1/platform/fleet/usage/agents - List fleet agents with usage
- `langsmith_get_v1_platform_fleet_usage_models` - GET /v1/platform/fleet/usage/models - List fleet models with usage
- `langsmith_get_v1_platform_fleet_usage_tools` - GET /v1/platform/fleet/usage/tools - List fleet tools with usage
- `langsmith_get_v1_platform_fleet_usage_users` - GET /v1/platform/fleet/usage/users - List fleet users with usage
## Fleet Webhooks
- `langsmith_post_v1_platform_fleet_webhooks_webhook_id_run` - POST /v1/platform/fleet-webhooks/{webhook_id}/run - Run a fleet webhook
## Hub Environments
- `langsmith_get_api_v1_hub_environments` - GET /api/v1/hub/environments - List hub environments
- `langsmith_post` - POST /api/v1/hub/environments - Create hub environments model
- `langsmith_delete_api_v1_hub_environments_id` - DELETE /api/v1/hub/environments/{id} - Delete hub environments model
- `langsmith_patch` - PATCH /api/v1/hub/environments/{id} - Update hub environments model
## Info
- `langsmith_get_server_info` - GET /api/v1/info - Get Server Info
- `langsmith_get_health_info` - GET /api/v1/info/health - Get Health Info
## Integrations
- `langsmith_get_v1_agent_builder_integrations` - GET /v1/agent-builder/integrations - Get Agent Builder integrations settings
- `langsmith_put_v1_agent_builder_integrations` - PUT /v1/agent-builder/integrations - Update Agent Builder integrations settings
## Likes
- `langsmith_like_repo` - POST /api/v1/likes/{owner}/{repo} - Like Repo
## Mcp
- `langsmith_get_tools` - GET /api/v1/mcp/tools - Get Tools
- `langsmith_invalidate_tools_cache` - DELETE /api/v1/mcp/tools - Invalidate Tools Cache
- `langsmith_proxy_get` - GET /api/v1/mcp/proxy - Proxy Get
- `langsmith_proxy` - POST /api/v1/mcp/proxy - Proxy
## Mcp Vendors
- `langsmith_get_v1_platform_mcp_vendors` - GET /v1/platform/mcp-vendors - List MCP vendors
- `langsmith_get_v1_platform_mcp_vendors_vendor_slug` - GET /v1/platform/mcp-vendors/{vendor_slug} - Get MCP vendor
- `langsmith_get_v1_platform_mcp_vendors_vendor_slug_account` - GET /v1/platform/mcp-vendors/{vendor_slug}/account - Get vendor account
- `langsmith_get_v1_platform_mcp_vendors_vendor_slug_mcp_servers` - GET /v1/platform/mcp-vendors/{vendor_slug}/mcp-servers - List MCP servers for a vendor
- `langsmith_get_v1_platform_mcp_vendors_vendor_slug_settings` - GET /v1/platform/mcp-vendors/{vendor_slug}/settings - Get vendor settings
- `langsmith_put_v1_platform_mcp_vendors_vendor_slug_settings` - PUT /v1/platform/mcp-vendors/{vendor_slug}/settings - Replace vendor settings
- `langsmith_post_v1_platform_mcp_vendors_vendor_slug_settings` - POST /v1/platform/mcp-vendors/{vendor_slug}/settings - Create vendor settings
- `langsmith_delete_v1_platform_mcp_vendors_vendor_slug_settings` - DELETE /v1/platform/mcp-vendors/{vendor_slug}/settings - Delete vendor settings
- `langsmith_get_v1_platform_mcp_vendors_vendor_slug_tools` - GET /v1/platform/mcp-vendors/{vendor_slug}/tools - List tools for a vendor
## Me
- `langsmith_get_onboarding_state` - GET /api/v1/me/onboarding_state - Get Onboarding State
- `langsmith_create_onboarding_state` - POST /api/v1/me/onboarding_state - Create Onboarding State
- `langsmith_update_onboarding_state_field` - PUT /api/v1/me/onboarding_state/{field} - Update Onboarding State Field
- `langsmith_get_ls_user_id` - GET /api/v1/me/ls_user_id - Get Ls User Id
- `langsmith_get_me_providers_providertype` - GET /me/providers/{providerType} - Get the authenticated user's provider user ID
## Metrics
- `langsmith_get_queue_metrics` - GET /api/v1/metrics/queue/{queue_name} - Get Queue Metrics
## Model Price Map
- `langsmith_read_model_price_map` - GET /api/v1/model-price-map - Read Model Price Map
- `langsmith_create_new_model_price` - POST /api/v1/model-price-map - Create New Model Price
- `langsmith_update_model_price` - PUT /api/v1/model-price-map/{id} - Update Model Price
- `langsmith_delete_model_price` - DELETE /api/v1/model-price-map/{id} - Delete Model Price
## Nps
- `langsmith_post_v1_platform_nps_response` - POST /v1/platform/nps/response - Submit an NPS response
## Oauth
- `langsmith_get_well_known_oauth_authorization_server` - GET /.well-known/oauth-authorization-server - Get OAuth2 authorization server metadata
- `langsmith_get_oauth_authorize` - GET /oauth/authorize - Initiate OAuth2 authorization
- `langsmith_post_oauth_authorize_approve` - POST /oauth/authorize/approve - Approve OAuth2 authorization request
- `langsmith_post_oauth_device_authorize` - POST /oauth/device/authorize - Authorize a device code
- `langsmith_post_oauth_device_code` - POST /oauth/device/code - Request OAuth2 device authorization
- `langsmith_post_oauth_revoke` - POST /oauth/revoke - Revoke an OAuth2 token
- `langsmith_post_oauth_token` - POST /oauth/token - Exchange grant for OAuth2 tokens
## Optimization Jobs
- `langsmith_list_jobs` - GET /api/v1/repos/{owner}/{repo}/optimization-jobs - List Jobs
- `langsmith_create_job` - POST /api/v1/repos/{owner}/{repo}/optimization-jobs - Create Job
- `langsmith_get_job` - GET /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id} - Get Job
- `langsmith_update_job` - PATCH /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id} - Update Job
- `langsmith_delete_job` - DELETE /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id} - Delete Job
- `langsmith_list_job_logs` - GET /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs - List Job Logs
- `langsmith_create_log` - POST /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs - Create Log
- `langsmith_get_log` - GET /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs/{log_id} - Get Log
- `langsmith_delete_log` - DELETE /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs/{log_id} - Delete Log
## Orgs
- `langsmith_get_api_v1_orgs_ttl_settings` - GET /api/v1/orgs/ttl-settings - List Ttl Settings
- `langsmith_put_api_v1_orgs_ttl_settings` - PUT /api/v1/orgs/ttl-settings - Upsert Ttl Settings
- `langsmith_list_organizations` - GET /api/v1/orgs - List Organizations
- `langsmith_create_organization` - POST /api/v1/orgs - Create Organization
- `langsmith_create_customers_and_get_stripe_setup_intent` - POST /api/v1/orgs/current/setup - Create Customers And Get Stripe Setup Intent
- `langsmith_get_organization_info` - GET /api/v1/orgs/current - Get Organization Info
- `langsmith_get_current_organization_info` - GET /api/v1/orgs/current/info - Get Current Organization Info
- `langsmith_update_current_organization_info` - PATCH /api/v1/orgs/current/info - Update Current Organization Info
- `langsmith_get_organization_billing_info` - GET /api/v1/orgs/current/billing - Get Organization Billing Info
- `langsmith_get_dashboard` - GET /api/v1/orgs/current/dashboard - Get Dashboard
- `langsmith_on_payment_method_created` - POST /api/v1/orgs/current/payment-method - On Payment Method Created
- `langsmith_get_company_info` - GET /api/v1/orgs/current/business-info - Get Company Info
- `langsmith_set_company_info` - POST /api/v1/orgs/current/business-info - Set Company Info
- `langsmith_change_payment_plan` - POST /api/v1/orgs/current/plan - Change Payment Plan
- `langsmith_list_organization_roles` - GET /api/v1/orgs/current/roles - List Organization Roles
- `langsmith_create_organization_roles` - POST /api/v1/orgs/current/roles - Create Organization Roles
- `langsmith_delete_organization_roles` - DELETE /api/v1/orgs/current/roles/{role_id} - Delete Organization Roles
- `langsmith_update_organization_roles` - PATCH /api/v1/orgs/current/roles/{role_id} - Update Organization Roles
- `langsmith_list_permissions` - GET /api/v1/orgs/permissions - List Permissions
- `langsmith_list_pending_organization_invites` - GET /api/v1/orgs/pending - List Pending Organization Invites
- `langsmith_get_current_org_members` - GET /api/v1/orgs/current/members - Get Current Org Members
- `langsmith_add_member_to_current_org` - POST /api/v1/orgs/current/members - Add Member To Current Org
- `langsmith_get_current_active_org_members` - GET /api/v1/orgs/current/members/active - Get Current Active Org Members
- `langsmith_get_current_pending_org_members` - GET /api/v1/orgs/current/members/pending - Get Current Pending Org Members
- `langsmith_add_members_to_current_org_batch` - POST /api/v1/orgs/current/members/batch - Add Members To Current Org Batch
- `langsmith_add_basic_auth_members_to_current_org` - POST /api/v1/orgs/current/members/basic/batch - Add Basic Auth Members To Current Org
- `langsmith_delete_current_org_pending_member` - DELETE /api/v1/orgs/current/members/{identity_id}/pending - Delete Current Org Pending Member
- `langsmith_delete_pending_organization_invite` - DELETE /api/v1/orgs/pending/{organization_id} - Delete Pending Organization Invite
- `langsmith_claim_pending_organization_invite` - POST /api/v1/orgs/pending/{organization_id}/claim - Claim Pending Organization Invite
- `langsmith_remove_member_from_current_org` - DELETE /api/v1/orgs/current/members/{identity_id} - Remove Member From Current Org
- `langsmith_update_current_org_member` - PATCH /api/v1/orgs/current/members/{identity_id} - Update Current Org Member
- `langsmith_update_current_user` - PATCH /api/v1/orgs/members/basic - Update Current User
- `langsmith_get_current_sso_settings` - GET /api/v1/orgs/current/sso-settings - Get Current Sso Settings
- `langsmith_create_sso_settings` - POST /api/v1/orgs/current/sso-settings - Create Sso Settings
- `langsmith_update_sso_settings` - PATCH /api/v1/orgs/current/sso-settings/{id} - Update Sso Settings
- `langsmith_delete_sso_settings` - DELETE /api/v1/orgs/current/sso-settings/{id} - Delete Sso Settings
- `langsmith_update_allowed_login_methods` - PATCH /api/v1/orgs/current/login-methods - Update Allowed Login Methods
- `langsmith_get_org_usage` - GET /api/v1/orgs/current/billing/usage - Get Org Usage
- `langsmith_get_granular_usage` - GET /api/v1/orgs/current/billing/granular-usage - Get Granular Usage
- `langsmith_export_granular_usage_csv` - GET /api/v1/orgs/current/billing/granular-usage/export - Export Granular Usage Csv
- `langsmith_get_current_user_login_methods` - GET /api/v1/orgs/current/user/login-methods - Get Current User Login Methods
- `langsmith_create_stripe_checkout_sessions_endpoint` - POST /api/v1/orgs/current/stripe_checkout_session - Create Stripe Checkout Sessions Endpoint
- `langsmith_create_stripe_account_links_endpoint` - POST /api/v1/orgs/current/stripe_account_links - Create Stripe Account Links Endpoint
- `langsmith_list_org_service_keys` - GET /api/v1/orgs/current/service-keys - List Org Service Keys
- `langsmith_create_org_service_key` - POST /api/v1/orgs/current/service-keys - Create Org Service Key
- `langsmith_delete_org_service_key` - DELETE /api/v1/orgs/current/service-keys/{api_key_id} - Delete Org Service Key
- `langsmith_list_org_personal_access_tokens` - GET /api/v1/orgs/current/personal-access-tokens - List Org Personal Access Tokens
- `langsmith_create_org_personal_access_token` - POST /api/v1/orgs/current/personal-access-tokens - Create Org Personal Access Token
- `langsmith_delete_org_personal_access_token` - DELETE /api/v1/orgs/current/personal-access-tokens/{pat_id} - Delete Org Personal Access Token
- `langsmith_set_default_sso_provision` - POST /api/v1/orgs/current/set-default-sso-provision - Set Default Sso Provision
- `langsmith_get_v1_platform_orgs_current_members` - GET /v1/platform/orgs/current/members - List org members with workspace roles
## Ownerships
- `langsmith_list_repo_owners` - GET /api/v1/repos/{owner}/{repo}/owners - List Repo Owners
- `langsmith_add_repo_owner` - POST /api/v1/repos/{owner}/{repo}/owners - Add Repo Owner
- `langsmith_remove_repo_owner` - DELETE /api/v1/repos/{owner}/{repo}/owners - Remove Repo Owner
## Playground Settings
- `langsmith_list_playground_settings` - GET /api/v1/playground-settings - List Playground Settings
- `langsmith_create_playground_settings` - POST /api/v1/playground-settings - Create Playground Settings
- `langsmith_get_playground_settings` - GET /api/v1/playground-settings/{playground_settings_id} - Get Playground Settings
- `langsmith_update_playground_settings` - PATCH /api/v1/playground-settings/{playground_settings_id} - Update Playground Settings
- `langsmith_delete_playground_settings` - DELETE /api/v1/playground-settings/{playground_settings_id} - Delete Playground Settings
## Prompt Webhooks
- `langsmith_list_prompt_webhooks` - GET /api/v1/prompt-webhooks - List Prompt Webhooks
- `langsmith_create_prompt_webhook` - POST /api/v1/prompt-webhooks - Create Prompt Webhook
- `langsmith_get_prompt_webhook` - GET /api/v1/prompt-webhooks/{webhook_id} - Get Prompt Webhook
- `langsmith_update_prompt_webhook` - PATCH /api/v1/prompt-webhooks/{webhook_id} - Update Prompt Webhook
- `langsmith_delete_prompt_webhook` - DELETE /api/v1/prompt-webhooks/{webhook_id} - Delete Prompt Webhook
- `langsmith_test_prompt_webhook` - POST /api/v1/prompt-webhooks/test - Test Prompt Webhook
## Prompts
- `langsmith_invoke_prompt` - POST /api/v1/prompts/invoke_prompt - Invoke Prompt
- `langsmith_prompt_canvas` - POST /api/v1/prompts/canvas - Prompt Canvas
## Public
- `langsmith_get_shared_run` - GET /api/v1/public/{share_token}/run - Get Shared Run
- `langsmith_get_shared_run_by_id` - GET /api/v1/public/{share_token}/run/{id} - Get Shared Run By Id
- `langsmith_query_shared_runs` - POST /api/v1/public/{share_token}/runs/query - Query Shared Runs
- `langsmith_read_shared_feedbacks` - GET /api/v1/public/{share_token}/feedbacks - Read Shared Feedbacks
- `langsmith_read_shared_dataset` - GET /api/v1/public/{share_token}/datasets - Read Shared Dataset
- `langsmith_count_shared_examples` - GET /api/v1/public/{share_token}/examples/count - Count Shared Examples
- `langsmith_read_shared_examples` - GET /api/v1/public/{share_token}/examples - Read Shared Examples
- `langsmith_read_shared_dataset_tracer_sessions` - GET /api/v1/public/{share_token}/datasets/sessions - Read Shared Dataset Tracer Sessions
- `langsmith_read_shared_dataset_tracer_sessions_bulk` - GET /api/v1/public/datasets/sessions-bulk - Read Shared Dataset Tracer Sessions Bulk
- `langsmith_read_shared_dataset_examples_with_runs` - POST /api/v1/public/{share_token}/examples/runs - Read Shared Dataset Examples With Runs
- `langsmith_read_shared_delta` - POST /api/v1/public/{share_token}/datasets/runs/delta - Read Shared Delta
- `langsmith_read_shared_delta_stream` - POST /api/v1/public/{share_token}/datasets/runs/delta/stream - Read Shared Delta Stream
- `langsmith_query_shared_dataset_runs` - POST /api/v1/public/{share_token}/datasets/runs/query - Query Shared Dataset Runs
- `langsmith_generate_query_for_shared_dataset_runs` - POST /api/v1/public/{share_token}/datasets/runs/generate-query - Generate Query For Shared Dataset Runs
- `langsmith_stats_shared_dataset_runs` - POST /api/v1/public/{share_token}/datasets/runs/stats - Stats Shared Dataset Runs
- `langsmith_read_shared_dataset_run` - GET /api/v1/public/{share_token}/datasets/runs/{run_id} - Read Shared Dataset Run
- `langsmith_read_shared_dataset_feedback` - GET /api/v1/public/{share_token}/datasets/feedback - Read Shared Dataset Feedback
- `langsmith_read_shared_comparative_experiments` - GET /api/v1/public/{share_token}/datasets/comparative - Read Shared Comparative Experiments
- `langsmith_get_message_json_schema` - GET /api/v1/public/schemas/{version}/message.json - Get Message Json Schema
- `langsmith_get_tool_def_json_schema` - GET /api/v1/public/schemas/{version}/tooldef.json - Get Tool Def Json Schema
## Repos
- `langsmith_list_repos` - GET /api/v1/repos - List Repos
- `langsmith_create_repo` - POST /api/v1/repos - Create Repo
- `langsmith_delete_repos` - DELETE /api/v1/repos - Delete Repos
- `langsmith_get_repo` - GET /api/v1/repos/{owner}/{repo} - Get Repo
- `langsmith_update_repo` - PATCH /api/v1/repos/{owner}/{repo} - Update Repo
- `langsmith_delete_repo` - DELETE /api/v1/repos/{owner}/{repo} - Delete Repo
- `langsmith_fork_repo` - POST /api/v1/repos/{owner}/{repo}/fork - Fork Repo
- `langsmith_list_repo_tags` - GET /api/v1/repos/tags - List Repo Tags
- `langsmith_optimize_prompt_job` - POST /api/v1/repos/optimize-job - Optimize Prompt Job
## Run
- `langsmith_list_rules` - GET /api/v1/runs/rules - List Rules
- `langsmith_create_rule` - POST /api/v1/runs/rules - Create Rule
- `langsmith_validate_rule` - POST /api/v1/runs/rules/validate - Validate Rule
- `langsmith_update_rule` - PATCH /api/v1/runs/rules/{rule_id} - Update Rule
- `langsmith_delete_rule` - DELETE /api/v1/runs/rules/{rule_id} - Delete Rule
- `langsmith_thread_preview` - GET /api/v1/runs/threads/{thread_id} - Thread Preview
- `langsmith_list_rule_logs` - GET /api/v1/runs/rules/{rule_id}/logs - List Rule Logs
- `langsmith_list_rule_logs_v2` - GET /api/v1/runs/rules/{rule_id}/logs/v2 - List Rule Logs V2
- `langsmith_get_last_applied_rule` - GET /api/v1/runs/rules/{rule_id}/last_applied - Get Last Applied Rule
- `langsmith_trigger_rule` - POST /api/v1/runs/rules/{rule_id}/trigger - Trigger Rule
- `langsmith_trigger_rules` - POST /api/v1/runs/rules/trigger - Trigger Rules
- `langsmith_read_run` - GET /api/v1/runs/{run_id} - Read Run
- `langsmith_update_run` - PATCH /api/v1/runs/{run_id} - Update Run
- `langsmith_read_run_share_state` - GET /api/v1/runs/{run_id}/share - Read Run Share State
- `langsmith_share_run` - PUT /api/v1/runs/{run_id}/share - Share Run
- `langsmith_unshare_run` - DELETE /api/v1/runs/{run_id}/share - Unshare Run
- `langsmith_validate_runs_query` - POST /api/v1/runs/query/validate - Validate Runs Query
- `langsmith_query_runs` - POST /api/v1/runs/query - Query Runs
- `langsmith_generate_query_for_runs` - POST /api/v1/runs/generate-query - Generate Query For Runs
- `langsmith_stats_runs` - POST /api/v1/runs/stats - Stats Runs
- `langsmith_group_runs` - POST /api/v1/runs/group - Group Runs
- `langsmith_stats_group_runs` - POST /api/v1/runs/group/stats - Stats Group Runs
- `langsmith_delete_runs_abac` - POST /api/v1/runs/delete/traces - Delete Runs Abac
- `langsmith_delete_runs` - POST /api/v1/runs/delete - Delete Runs
## Runs
- `langsmith_post_runs` - POST /runs - Create a Run
- `langsmith_post_runs_batch` - POST /runs/batch - Ingest Runs (Batch JSON)
- `langsmith_post_runs_multipart` - POST /runs/multipart - Ingest Runs (Multipart)
- `langsmith_patch_runs_run_id` - PATCH /runs/{run_id} - Update a Run
- `langsmith_post_v2_runs_query` - POST /v2/runs/query - Query runs
- `langsmith_get_v2_runs_run_id` - GET /v2/runs/{run_id} - Get a single run
- `langsmith_get_v2_traces_trace_id_runs` - GET /v2/traces/{trace_id}/runs - List runs in a trace
## Sandboxes
- `langsmith_get_v2_sandboxes_boxes` - GET /v2/sandboxes/boxes - List sandbox claims
- `langsmith_post_v2_sandboxes_boxes` - POST /v2/sandboxes/boxes - Create a sandbox claim
- `langsmith_post_v2_sandboxes_boxes_batch` - POST /v2/sandboxes/boxes/batch-delete - Batch delete sandbox claims
- `langsmith_get_v2_sandboxes_boxes_name` - GET /v2/sandboxes/boxes/{name} - Get a sandbox claim
- `langsmith_delete_v2_sandboxes_boxes_name` - DELETE /v2/sandboxes/boxes/{name} - Delete a sandbox claim
- `langsmith_patch_v2_sandboxes_boxes_name` - PATCH /v2/sandboxes/boxes/{name} - Update a sandbox claim
- `langsmith_post_v2_sandboxes_boxes_name_service_url` - POST /v2/sandboxes/boxes/{name}/service-url - Generate a service access token
- `langsmith_post_v2_sandboxes_boxes_name_snapshot` - POST /v2/sandboxes/boxes/{name}/snapshot - Capture a snapshot from a sandbox
- `langsmith_post_v2_sandboxes_boxes_name_start` - POST /v2/sandboxes/boxes/{name}/start - Start a sandbox
- `langsmith_get_v2_sandboxes_boxes_name_status` - GET /v2/sandboxes/boxes/{name}/status - Get sandbox claim status
- `langsmith_post_v2_sandboxes_boxes_name_stop` - POST /v2/sandboxes/boxes/{name}/stop - Stop a sandbox
- `langsmith_get_v2_sandboxes_snapshots` - GET /v2/sandboxes/snapshots - List snapshots
- `langsmith_post_v2_sandboxes_snapshots` - POST /v2/sandboxes/snapshots - Create a snapshot
- `langsmith_get_v2_sandboxes_snapshots_snapshot_id` - GET /v2/sandboxes/snapshots/{snapshot_id} - Get a snapshot
- `langsmith_delete_v2_sandboxes_snapshots_snapshot_id` - DELETE /v2/sandboxes/snapshots/{snapshot_id} - Delete a snapshot
- `langsmith_get_v2_sandboxes_usage` - GET /v2/sandboxes/usage - Get sandbox resource usage
## Sandboxes Internal
- `langsmith_post_v2_sandboxes_internal_start_name` - POST /v2/sandboxes/internal/start/{name} - Internal: start a stopped sandbox (service-to-service)
## Service Accounts
- `langsmith_get_service_accounts` - GET /api/v1/service-accounts - Get Service Accounts
- `langsmith_create_service_account` - POST /api/v1/service-accounts - Create Service Account
- `langsmith_delete_service_account` - DELETE /api/v1/service-accounts/{service_account_id} - Delete Service Account
## Sessions
- `langsmith_get_v1_platform_sessions_sessionid_agent_versions` - GET /v1/platform/sessions/{sessionID}/agent-versions - List agent versions for a project
## Settings
- `langsmith_get_settings` - GET /api/v1/settings - Get Settings
- `langsmith_set_tenant_handle` - POST /api/v1/settings/handle - Set Tenant Handle
## Skills
- `langsmith_get_v1_fleet_skills` - GET /v1/fleet/skills - List skills
- `langsmith_post_v1_fleet_skills` - POST /v1/fleet/skills - Create a skill
- `langsmith_get_v1_fleet_skills_skillid` - GET /v1/fleet/skills/{skillID} - Get a skill
- `langsmith_put_v1_fleet_skills_skillid` - PUT /v1/fleet/skills/{skillID} - Replace a skill
- `langsmith_delete_v1_fleet_skills_skillid` - DELETE /v1/fleet/skills/{skillID} - Delete a skill
## Tag Transitions
- `langsmith_get_repos_owner_repo_tags_tag_name_history` - GET /repos/{owner}/{repo}/tags/{tag_name}/history - Get tag transition history
## Tags
- `langsmith_get_tags` - GET /api/v1/repos/{owner}/{repo}/tags - Get Tags
- `langsmith_create_tag` - POST /api/v1/repos/{owner}/{repo}/tags - Create Tag
- `langsmith_get_tag` - GET /api/v1/repos/{owner}/{repo}/tags/{tag_name} - Get Tag
- `langsmith_update_tag` - PATCH /api/v1/repos/{owner}/{repo}/tags/{tag_name} - Update Tag
- `langsmith_delete_tag` - DELETE /api/v1/repos/{owner}/{repo}/tags/{tag_name} - Delete Tag
## Tenant
- `langsmith_list_tenants` - GET /api/v1/tenants - List Tenants
- `langsmith_create_tenant` - POST /api/v1/tenants - Create Tenant
## Threads
- `langsmith_post_v2_threads_query` - POST /v2/threads/query - Query Threads
- `langsmith_get_v2_threads_thread_id_traces` - GET /v2/threads/{thread_id}/traces - Query Thread Traces
## Tools
- `langsmith_get_v1_platform_tools` - GET /v1/platform/tools - List tools
- `langsmith_post_v1_platform_tools` - POST /v1/platform/tools - Create a tool
- `langsmith_get_v1_platform_tools_id_id` - GET /v1/platform/tools/id/{id} - Get a tool by ID
- `langsmith_delete_v1_platform_tools_id_id` - DELETE /v1/platform/tools/id/{id} - Delete a tool by ID
- `langsmith_patch_v1_platform_tools_id_id` - PATCH /v1/platform/tools/id/{id} - Update a tool by ID
- `langsmith_get_v1_platform_tools_handle` - GET /v1/platform/tools/{handle} - Get a tool by handle
- `langsmith_delete_v1_platform_tools_handle` - DELETE /v1/platform/tools/{handle} - Delete a tool by handle
- `langsmith_patch_v1_platform_tools_handle` - PATCH /v1/platform/tools/{handle} - Update a tool by handle
## Tracer Sessions
- `langsmith_get_tracing_project_prebuilt_dashboard` - POST /api/v1/sessions/{session_id}/dashboard - Get Tracing Project Prebuilt Dashboard
- `langsmith_read_tracer_session` - GET /api/v1/sessions/{session_id} - Read Tracer Session
- `langsmith_update_tracer_session` - PATCH /api/v1/sessions/{session_id} - Update Tracer Session
- `langsmith_delete_tracer_session` - DELETE /api/v1/sessions/{session_id} - Delete Tracer Session
- `langsmith_read_tracer_sessions` - GET /api/v1/sessions - Read Tracer Sessions
- `langsmith_create_tracer_session` - POST /api/v1/sessions - Create Tracer Session
- `langsmith_delete_tracer_sessions` - DELETE /api/v1/sessions - Delete Tracer Sessions
- `langsmith_read_tracer_sessions_runs_metadata` - GET /api/v1/sessions/{session_id}/metadata - Read Tracer Sessions Runs Metadata
- `langsmith_read_filter_views` - GET /api/v1/sessions/{session_id}/views - Read Filter Views
- `langsmith_create_filter_view` - POST /api/v1/sessions/{session_id}/views - Create Filter View
- `langsmith_read_filter_view` - GET /api/v1/sessions/{session_id}/views/{view_id} - Read Filter View
- `langsmith_update_filter_view` - PATCH /api/v1/sessions/{session_id}/views/{view_id} - Update Filter View
- `langsmith_delete_filter_view` - DELETE /api/v1/sessions/{session_id}/views/{view_id} - Delete Filter View
- `langsmith_rename_filter_view` - PATCH /api/v1/sessions/{session_id}/views/{view_id}/rename - Rename Filter View
- `langsmith_beta_get_insights_jobs` - GET /api/v1/sessions/{session_id}/insights - [Beta] Get Insights Jobs
- `langsmith_beta_create_insights_job` - POST /api/v1/sessions/{session_id}/insights - [Beta] Create Insights Job
- `langsmith_beta_get_insights_job_configs` - GET /api/v1/sessions/{session_id}/insights/configs - [Beta] Get Insights Job Configs
- `langsmith_beta_create_insights_job_config` - POST /api/v1/sessions/{session_id}/insights/configs - [Beta] Create Insights Job Config
- `langsmith_beta_auto_generate_insights_job_config` - POST /api/v1/sessions/{session_id}/insights/configs/generate - [Beta] Auto-Generate Insights Job Config
- `langsmith_beta_update_insights_job_config` - PATCH /api/v1/sessions/{session_id}/insights/configs/{config_id} - [Beta] Update Insights Job Config
- `langsmith_beta_delete_insights_job_config` - DELETE /api/v1/sessions/{session_id}/insights/configs/{config_id} - [Beta] Delete Insights Job Config
- `langsmith_beta_get_insights_job` - GET /api/v1/sessions/{session_id}/insights/{job_id} - [Beta] Get Insights Job
- `langsmith_beta_update_insights_job` - PATCH /api/v1/sessions/{session_id}/insights/{job_id} - [Beta] Update Insights Job
- `langsmith_beta_delete_insights_job` - DELETE /api/v1/sessions/{session_id}/insights/{job_id} - [Beta] Delete Insights Job
- `langsmith_beta_get_run_cluster_from_insights_job` - GET /api/v1/sessions/{session_id}/insights/{job_id}/clusters/{cluster_id} - [Beta] Get Run Cluster From Insights Job
- `langsmith_beta_get_runs_from_insights_job` - GET /api/v1/sessions/{session_id}/insights/{job_id}/runs - [Beta] Get Runs From Insights Job
## Ttl Settings
- `langsmith_list_ttl_settings` - GET /api/v1/ttl-settings - List Ttl Settings
- `langsmith_upsert_ttl_settings` - PUT /api/v1/ttl-settings - Upsert Ttl Settings
## Usage Limits
- `langsmith_list_usage_limits` - GET /api/v1/usage-limits - List Usage Limits
- `langsmith_upsert_usage_limit` - PUT /api/v1/usage-limits - Upsert Usage Limit
- `langsmith_list_org_usage_limits` - GET /api/v1/usage-limits/org - List Org Usage Limits
- `langsmith_delete_usage_limit` - DELETE /api/v1/usage-limits/{usage_limit_id} - Delete Usage Limit
## Workspaces
- `langsmith_create_workspace` - POST /api/v1/workspaces - Create Workspace
- `langsmith_list_workspaces` - GET /api/v1/workspaces - List Workspaces
- `langsmith_patch_workspace` - PATCH /api/v1/workspaces/{workspace_id} - Patch Workspace
- `langsmith_delete_workspace` - DELETE /api/v1/workspaces/{workspace_id} - Delete Workspace
- `langsmith_get_current_workspace_stats` - GET /api/v1/workspaces/current/stats - Get Current Workspace Stats
- `langsmith_get_current_workspace_usage_limits_info` - GET /api/v1/workspaces/current/usage_limits - Get Current Workspace Usage Limits Info
- `langsmith_get_shared_tokens` - GET /api/v1/workspaces/current/shared - Get Shared Tokens
- `langsmith_bulk_unshare_entities` - DELETE /api/v1/workspaces/current/shared - Bulk Unshare Entities
- `langsmith_list_current_workspace_secrets` - GET /api/v1/workspaces/current/secrets - List Current Workspace Secrets
- `langsmith_upsert_current_workspace_secrets` - POST /api/v1/workspaces/current/secrets - Upsert Current Workspace Secrets
- `langsmith_get_current_workspace_encrypted_secrets` - GET /api/v1/workspaces/current/secrets/encrypted - Get Current Workspace Encrypted Secrets
- `langsmith_list_tag_keys` - GET /api/v1/workspaces/current/tag-keys - List Tag Keys
- `langsmith_create_tag_key` - POST /api/v1/workspaces/current/tag-keys - Create Tag Key
- `langsmith_update_tag_key` - PATCH /api/v1/workspaces/current/tag-keys/{tag_key_id} - Update Tag Key
- `langsmith_get_tag_key` - GET /api/v1/workspaces/current/tag-keys/{tag_key_id} - Get Tag Key
- `langsmith_delete_tag_key` - DELETE /api/v1/workspaces/current/tag-keys/{tag_key_id} - Delete Tag Key
- `langsmith_create_tag_value` - POST /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values - Create Tag Value
- `langsmith_list_tag_values` - GET /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values - List Tag Values
- `langsmith_get_tag_value` - GET /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values/{tag_value_id} - Get Tag Value
- `langsmith_update_tag_value` - PATCH /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values/{tag_value_id} - Update Tag Value
- `langsmith_delete_tag_value` - DELETE /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values/{tag_value_id} - Delete Tag Value
- `langsmith_create_tagging` - POST /api/v1/workspaces/current/taggings - Create Tagging
- `langsmith_list_taggings` - GET /api/v1/workspaces/current/taggings - List Taggings
- `langsmith_delete_tagging` - DELETE /api/v1/workspaces/current/taggings/{tagging_id} - Delete Tagging
- `langsmith_list_tags` - GET /api/v1/workspaces/current/tags - List Tags
- `langsmith_list_tags_for_resource` - GET /api/v1/workspaces/current/tags/resource - List Tags For Resource
- `langsmith_list_tags_for_resources` - POST /api/v1/workspaces/current/tags/resources - List Tags For Resources
- `langsmith_list_pending_workspace_invites` - GET /api/v1/workspaces/pending - List Pending Workspace Invites
- `langsmith_delete_pending_workspace_invite` - DELETE /api/v1/workspaces/pending/{id} - Delete Pending Workspace Invite
- `langsmith_claim_pending_workspace_invite` - POST /api/v1/workspaces/pending/{workspace_id}/claim - Claim Pending Workspace Invite
- `langsmith_get_current_workspace_members` - GET /api/v1/workspaces/current/members - Get Current Workspace Members
- `langsmith_add_member_to_current_workspace` - POST /api/v1/workspaces/current/members - Add Member To Current Workspace
- `langsmith_get_current_active_workspace_members` - GET /api/v1/workspaces/current/members/active - Get Current Active Workspace Members
- `langsmith_get_current_pending_workspace_members` - GET /api/v1/workspaces/current/members/pending - Get Current Pending Workspace Members
- `langsmith_add_members_to_current_workspace_batch` - POST /api/v1/workspaces/current/members/batch - Add Members To Current Workspace Batch
- `langsmith_delete_current_workspace_member` - DELETE /api/v1/workspaces/current/members/{identity_id} - Delete Current Workspace Member
- `langsmith_patch_current_workspace_member` - PATCH /api/v1/workspaces/current/members/{identity_id} - Patch Current Workspace Member
- `langsmith_delete_current_workspace_pending_member` - DELETE /api/v1/workspaces/current/members/{identity_id}/pending - Delete Current Workspace Pending Member local result = app.integrations.langsmith.get_server_info({})
print(result) Functions
get_server_info Read
Get Server Info (GET /api/v1/info).
- Lua path
app.integrations.langsmith.get_server_info- Full name
langsmith.langsmith_get_server_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_health_info Read
Get Health Info (GET /api/v1/info/health).
- Lua path
app.integrations.langsmith.get_health_info- Full name
langsmith.langsmith_get_health_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_queue_metrics Read
Get Queue Metrics (GET /api/v1/metrics/queue/{queue_name}).
- Lua path
app.integrations.langsmith.get_queue_metrics- Full name
langsmith.langsmith_get_queue_metrics
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_tracing_project_prebuilt_dashboard Write
Get Tracing Project Prebuilt Dashboard (POST /api/v1/sessions/{session_id}/dashboard).
- Lua path
app.integrations.langsmith.get_tracing_project_prebuilt_dashboard- Full name
langsmith.langsmith_get_tracing_project_prebuilt_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_tracer_session Read
Read Tracer Session (GET /api/v1/sessions/{session_id}).
- Lua path
app.integrations.langsmith.read_tracer_session- Full name
langsmith.langsmith_read_tracer_session
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_tracer_session Write
Update Tracer Session (PATCH /api/v1/sessions/{session_id}).
- Lua path
app.integrations.langsmith.update_tracer_session- Full name
langsmith.langsmith_update_tracer_session
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_tracer_session Write
Delete Tracer Session (DELETE /api/v1/sessions/{session_id}).
- Lua path
app.integrations.langsmith.delete_tracer_session- Full name
langsmith.langsmith_delete_tracer_session
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_tracer_sessions Read
Read Tracer Sessions (GET /api/v1/sessions).
- Lua path
app.integrations.langsmith.read_tracer_sessions- Full name
langsmith.langsmith_read_tracer_sessions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_tracer_session Write
Create Tracer Session (POST /api/v1/sessions).
- Lua path
app.integrations.langsmith.create_tracer_session- Full name
langsmith.langsmith_create_tracer_session
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_tracer_sessions Write
Delete Tracer Sessions (DELETE /api/v1/sessions).
- Lua path
app.integrations.langsmith.delete_tracer_sessions- Full name
langsmith.langsmith_delete_tracer_sessions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_tracer_sessions_runs_metadata Read
Read Tracer Sessions Runs Metadata (GET /api/v1/sessions/{session_id}/metadata).
- Lua path
app.integrations.langsmith.read_tracer_sessions_runs_metadata- Full name
langsmith.langsmith_read_tracer_sessions_runs_metadata
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_filter_views Read
Read Filter Views (GET /api/v1/sessions/{session_id}/views).
- Lua path
app.integrations.langsmith.read_filter_views- Full name
langsmith.langsmith_read_filter_views
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_filter_view Write
Create Filter View (POST /api/v1/sessions/{session_id}/views).
- Lua path
app.integrations.langsmith.create_filter_view- Full name
langsmith.langsmith_create_filter_view
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_filter_view Read
Read Filter View (GET /api/v1/sessions/{session_id}/views/{view_id}).
- Lua path
app.integrations.langsmith.read_filter_view- Full name
langsmith.langsmith_read_filter_view
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_filter_view Write
Update Filter View (PATCH /api/v1/sessions/{session_id}/views/{view_id}).
- Lua path
app.integrations.langsmith.update_filter_view- Full name
langsmith.langsmith_update_filter_view
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_filter_view Write
Delete Filter View (DELETE /api/v1/sessions/{session_id}/views/{view_id}).
- Lua path
app.integrations.langsmith.delete_filter_view- Full name
langsmith.langsmith_delete_filter_view
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rename_filter_view Write
Rename Filter View (PATCH /api/v1/sessions/{session_id}/views/{view_id}/rename).
- Lua path
app.integrations.langsmith.rename_filter_view- Full name
langsmith.langsmith_rename_filter_view
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_get_insights_jobs Read
[Beta] Get Insights Jobs (GET /api/v1/sessions/{session_id}/insights).
- Lua path
app.integrations.langsmith.beta_get_insights_jobs- Full name
langsmith.langsmith_beta_get_insights_jobs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_create_insights_job Write
[Beta] Create Insights Job (POST /api/v1/sessions/{session_id}/insights).
- Lua path
app.integrations.langsmith.beta_create_insights_job- Full name
langsmith.langsmith_beta_create_insights_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_get_insights_job_configs Read
[Beta] Get Insights Job Configs (GET /api/v1/sessions/{session_id}/insights/configs).
- Lua path
app.integrations.langsmith.beta_get_insights_job_configs- Full name
langsmith.langsmith_beta_get_insights_job_configs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_create_insights_job_config Write
[Beta] Create Insights Job Config (POST /api/v1/sessions/{session_id}/insights/configs).
- Lua path
app.integrations.langsmith.beta_create_insights_job_config- Full name
langsmith.langsmith_beta_create_insights_job_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_auto_generate_insights_job_config Write
[Beta] Auto-Generate Insights Job Config (POST /api/v1/sessions/{session_id}/insights/configs/generate).
- Lua path
app.integrations.langsmith.beta_auto_generate_insights_job_config- Full name
langsmith.langsmith_beta_auto_generate_insights_job_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_update_insights_job_config Write
[Beta] Update Insights Job Config (PATCH /api/v1/sessions/{session_id}/insights/configs/{config_id}).
- Lua path
app.integrations.langsmith.beta_update_insights_job_config- Full name
langsmith.langsmith_beta_update_insights_job_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_delete_insights_job_config Write
[Beta] Delete Insights Job Config (DELETE /api/v1/sessions/{session_id}/insights/configs/{config_id}).
- Lua path
app.integrations.langsmith.beta_delete_insights_job_config- Full name
langsmith.langsmith_beta_delete_insights_job_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_get_insights_job Read
[Beta] Get Insights Job (GET /api/v1/sessions/{session_id}/insights/{job_id}).
- Lua path
app.integrations.langsmith.beta_get_insights_job- Full name
langsmith.langsmith_beta_get_insights_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_update_insights_job Write
[Beta] Update Insights Job (PATCH /api/v1/sessions/{session_id}/insights/{job_id}).
- Lua path
app.integrations.langsmith.beta_update_insights_job- Full name
langsmith.langsmith_beta_update_insights_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_delete_insights_job Write
[Beta] Delete Insights Job (DELETE /api/v1/sessions/{session_id}/insights/{job_id}).
- Lua path
app.integrations.langsmith.beta_delete_insights_job- Full name
langsmith.langsmith_beta_delete_insights_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_get_run_cluster_from_insights_job Read
[Beta] Get Run Cluster From Insights Job (GET /api/v1/sessions/{session_id}/insights/{job_id}/clusters/{cluster_id}).
- Lua path
app.integrations.langsmith.beta_get_run_cluster_from_insights_job- Full name
langsmith.langsmith_beta_get_run_cluster_from_insights_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
beta_get_runs_from_insights_job Read
[Beta] Get Runs From Insights Job (GET /api/v1/sessions/{session_id}/insights/{job_id}/runs).
- Lua path
app.integrations.langsmith.beta_get_runs_from_insights_job- Full name
langsmith.langsmith_beta_get_runs_from_insights_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_workspace Write
Create Workspace (POST /api/v1/workspaces).
- Lua path
app.integrations.langsmith.create_workspace- Full name
langsmith.langsmith_create_workspace
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_workspaces Read
List Workspaces (GET /api/v1/workspaces).
- Lua path
app.integrations.langsmith.list_workspaces- Full name
langsmith.langsmith_list_workspaces
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_workspace Write
Patch Workspace (PATCH /api/v1/workspaces/{workspace_id}).
- Lua path
app.integrations.langsmith.patch_workspace- Full name
langsmith.langsmith_patch_workspace
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_workspace Write
Delete Workspace (DELETE /api/v1/workspaces/{workspace_id}).
- Lua path
app.integrations.langsmith.delete_workspace- Full name
langsmith.langsmith_delete_workspace
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_workspace_stats Read
Get Current Workspace Stats (GET /api/v1/workspaces/current/stats).
- Lua path
app.integrations.langsmith.get_current_workspace_stats- Full name
langsmith.langsmith_get_current_workspace_stats
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_workspace_usage_limits_info Read
Get Current Workspace Usage Limits Info (GET /api/v1/workspaces/current/usage_limits).
- Lua path
app.integrations.langsmith.get_current_workspace_usage_limits_info- Full name
langsmith.langsmith_get_current_workspace_usage_limits_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_current_workspace_secrets Read
List Current Workspace Secrets (GET /api/v1/workspaces/current/secrets).
- Lua path
app.integrations.langsmith.list_current_workspace_secrets- Full name
langsmith.langsmith_list_current_workspace_secrets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upsert_current_workspace_secrets Write
Upsert Current Workspace Secrets (POST /api/v1/workspaces/current/secrets).
- Lua path
app.integrations.langsmith.upsert_current_workspace_secrets- Full name
langsmith.langsmith_upsert_current_workspace_secrets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_workspace_encrypted_secrets Read
Get Current Workspace Encrypted Secrets (GET /api/v1/workspaces/current/secrets/encrypted).
- Lua path
app.integrations.langsmith.get_current_workspace_encrypted_secrets- Full name
langsmith.langsmith_get_current_workspace_encrypted_secrets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_tag_keys Read
List Tag Keys (GET /api/v1/workspaces/current/tag-keys).
- Lua path
app.integrations.langsmith.list_tag_keys- Full name
langsmith.langsmith_list_tag_keys
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_tag_key Write
Create Tag Key (POST /api/v1/workspaces/current/tag-keys).
- Lua path
app.integrations.langsmith.create_tag_key- Full name
langsmith.langsmith_create_tag_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_tag_key Write
Update Tag Key (PATCH /api/v1/workspaces/current/tag-keys/{tag_key_id}).
- Lua path
app.integrations.langsmith.update_tag_key- Full name
langsmith.langsmith_update_tag_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_tag_key Read
Get Tag Key (GET /api/v1/workspaces/current/tag-keys/{tag_key_id}).
- Lua path
app.integrations.langsmith.get_tag_key- Full name
langsmith.langsmith_get_tag_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_tag_key Write
Delete Tag Key (DELETE /api/v1/workspaces/current/tag-keys/{tag_key_id}).
- Lua path
app.integrations.langsmith.delete_tag_key- Full name
langsmith.langsmith_delete_tag_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_tag_value Write
Create Tag Value (POST /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values).
- Lua path
app.integrations.langsmith.create_tag_value- Full name
langsmith.langsmith_create_tag_value
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_tag_values Read
List Tag Values (GET /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values).
- Lua path
app.integrations.langsmith.list_tag_values- Full name
langsmith.langsmith_list_tag_values
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_tag_value Read
Get Tag Value (GET /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values/{tag_value_id}).
- Lua path
app.integrations.langsmith.get_tag_value- Full name
langsmith.langsmith_get_tag_value
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_tag_value Write
Update Tag Value (PATCH /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values/{tag_value_id}).
- Lua path
app.integrations.langsmith.update_tag_value- Full name
langsmith.langsmith_update_tag_value
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_tag_value Write
Delete Tag Value (DELETE /api/v1/workspaces/current/tag-keys/{tag_key_id}/tag-values/{tag_value_id}).
- Lua path
app.integrations.langsmith.delete_tag_value- Full name
langsmith.langsmith_delete_tag_value
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_tagging Write
Create Tagging (POST /api/v1/workspaces/current/taggings).
- Lua path
app.integrations.langsmith.create_tagging- Full name
langsmith.langsmith_create_tagging
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_taggings Read
List Taggings (GET /api/v1/workspaces/current/taggings).
- Lua path
app.integrations.langsmith.list_taggings- Full name
langsmith.langsmith_list_taggings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_tagging Write
Delete Tagging (DELETE /api/v1/workspaces/current/taggings/{tagging_id}).
- Lua path
app.integrations.langsmith.delete_tagging- Full name
langsmith.langsmith_delete_tagging
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_tags Read
List Tags (GET /api/v1/workspaces/current/tags).
- Lua path
app.integrations.langsmith.list_tags- Full name
langsmith.langsmith_list_tags
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_tags_resource Read
List Tags For Resource (GET /api/v1/workspaces/current/tags/resource).
- Lua path
app.integrations.langsmith.list_tags_resource- Full name
langsmith.langsmith_list_tags_for_resource
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_tags_resources Write
List Tags For Resources (POST /api/v1/workspaces/current/tags/resources).
- Lua path
app.integrations.langsmith.list_tags_resources- Full name
langsmith.langsmith_list_tags_for_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_audit_logs Read
Get Audit Logs (GET /api/v1/audit-logs).
- Lua path
app.integrations.langsmith.get_audit_logs- Full name
langsmith.langsmith_get_audit_logs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_ttl_settings Read
List Ttl Settings (GET /api/v1/ttl-settings).
- Lua path
app.integrations.langsmith.list_ttl_settings- Full name
langsmith.langsmith_list_ttl_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upsert_ttl_settings Write
Upsert Ttl Settings (PUT /api/v1/ttl-settings).
- Lua path
app.integrations.langsmith.upsert_ttl_settings- Full name
langsmith.langsmith_upsert_ttl_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_api_v1_orgs_ttl_settings Read
List Ttl Settings (GET /api/v1/orgs/ttl-settings).
- Lua path
app.integrations.langsmith.get_api_v1_orgs_ttl_settings- Full name
langsmith.langsmith_get_api_v1_orgs_ttl_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
put_api_v1_orgs_ttl_settings Write
Upsert Ttl Settings (PUT /api/v1/orgs/ttl-settings).
- Lua path
app.integrations.langsmith.put_api_v1_orgs_ttl_settings- Full name
langsmith.langsmith_put_api_v1_orgs_ttl_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
count_examples Read
Count Examples (GET /api/v1/examples/count).
- Lua path
app.integrations.langsmith.count_examples- Full name
langsmith.langsmith_count_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_example Read
Read Example (GET /api/v1/examples/{example_id}).
- Lua path
app.integrations.langsmith.read_example- Full name
langsmith.langsmith_read_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_example Write
Update Example (PATCH /api/v1/examples/{example_id}).
- Lua path
app.integrations.langsmith.update_example- Full name
langsmith.langsmith_update_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_example Write
Delete Example (DELETE /api/v1/examples/{example_id}).
- Lua path
app.integrations.langsmith.delete_example- Full name
langsmith.langsmith_delete_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_examples Read
Read Examples (GET /api/v1/examples).
- Lua path
app.integrations.langsmith.read_examples- Full name
langsmith.langsmith_read_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_example Write
Create Example (POST /api/v1/examples).
- Lua path
app.integrations.langsmith.create_example- Full name
langsmith.langsmith_create_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_examples Write
Delete Examples (DELETE /api/v1/examples).
- Lua path
app.integrations.langsmith.delete_examples- Full name
langsmith.langsmith_delete_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_examples Write
Create Examples (POST /api/v1/examples/bulk).
- Lua path
app.integrations.langsmith.create_examples- Full name
langsmith.langsmith_create_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
legacy_update_examples Write
Legacy Update Examples (PATCH /api/v1/examples/bulk).
- Lua path
app.integrations.langsmith.legacy_update_examples- Full name
langsmith.langsmith_legacy_update_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upload_examples_from_csv Write
Upload Examples From Csv (POST /api/v1/examples/upload/{dataset_id}).
- Lua path
app.integrations.langsmith.upload_examples_from_csv- Full name
langsmith.langsmith_upload_examples_from_csv
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
validate_example Write
Validate Example (POST /api/v1/examples/validate).
- Lua path
app.integrations.langsmith.validate_example- Full name
langsmith.langsmith_validate_example
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
validate_examples Write
Validate Examples (POST /api/v1/examples/validate/bulk).
- Lua path
app.integrations.langsmith.validate_examples- Full name
langsmith.langsmith_validate_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_datasets Read
Read Datasets (GET /api/v1/datasets).
- Lua path
app.integrations.langsmith.read_datasets- Full name
langsmith.langsmith_read_datasets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_dataset Write
Create Dataset (POST /api/v1/datasets).
- Lua path
app.integrations.langsmith.create_dataset- Full name
langsmith.langsmith_create_dataset
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_datasets Write
Delete Datasets (DELETE /api/v1/datasets).
- Lua path
app.integrations.langsmith.delete_datasets- Full name
langsmith.langsmith_delete_datasets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_datasets_stream Read
Read Datasets Stream (GET /api/v1/datasets/stream).
- Lua path
app.integrations.langsmith.read_datasets_stream- Full name
langsmith.langsmith_read_datasets_stream
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_dataset Read
Read Dataset (GET /api/v1/datasets/{dataset_id}).
- Lua path
app.integrations.langsmith.read_dataset- Full name
langsmith.langsmith_read_dataset
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_dataset Write
Delete Dataset (DELETE /api/v1/datasets/{dataset_id}).
- Lua path
app.integrations.langsmith.delete_dataset- Full name
langsmith.langsmith_delete_dataset
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_dataset Write
Update Dataset (PATCH /api/v1/datasets/{dataset_id}).
- Lua path
app.integrations.langsmith.update_dataset- Full name
langsmith.langsmith_update_dataset
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upload_csv_dataset Write
Upload Csv Dataset (POST /api/v1/datasets/upload).
- Lua path
app.integrations.langsmith.upload_csv_dataset- Full name
langsmith.langsmith_upload_csv_dataset
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upload_experiment Write
Upload Experiment (POST /api/v1/datasets/upload-experiment).
- Lua path
app.integrations.langsmith.upload_experiment- Full name
langsmith.langsmith_upload_experiment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_dataset_versions Read
Get Dataset Versions (GET /api/v1/datasets/{dataset_id}/versions).
- Lua path
app.integrations.langsmith.get_dataset_versions- Full name
langsmith.langsmith_get_dataset_versions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
diff_dataset_versions Read
Diff Dataset Versions (GET /api/v1/datasets/{dataset_id}/versions/diff).
- Lua path
app.integrations.langsmith.diff_dataset_versions- Full name
langsmith.langsmith_diff_dataset_versions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_dataset_version Read
Get Dataset Version (GET /api/v1/datasets/{dataset_id}/version).
- Lua path
app.integrations.langsmith.get_dataset_version- Full name
langsmith.langsmith_get_dataset_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_dataset_version Write
Update Dataset Version (PUT /api/v1/datasets/{dataset_id}/tags).
- Lua path
app.integrations.langsmith.update_dataset_version- Full name
langsmith.langsmith_update_dataset_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
download_dataset_openai Read
Download Dataset Openai (GET /api/v1/datasets/{dataset_id}/openai).
- Lua path
app.integrations.langsmith.download_dataset_openai- Full name
langsmith.langsmith_download_dataset_openai
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
download_dataset_openai_ft Read
Download Dataset Openai Ft (GET /api/v1/datasets/{dataset_id}/openai_ft).
- Lua path
app.integrations.langsmith.download_dataset_openai_ft- Full name
langsmith.langsmith_download_dataset_openai_ft
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
download_dataset_csv Read
Download Dataset Csv (GET /api/v1/datasets/{dataset_id}/csv).
- Lua path
app.integrations.langsmith.download_dataset_csv- Full name
langsmith.langsmith_download_dataset_csv
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
download_dataset_jsonl Read
Download Dataset Jsonl (GET /api/v1/datasets/{dataset_id}/jsonl).
- Lua path
app.integrations.langsmith.download_dataset_jsonl- Full name
langsmith.langsmith_download_dataset_jsonl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_examples_with_runs Write
Read Examples With Runs (POST /api/v1/datasets/{dataset_id}/runs).
- Lua path
app.integrations.langsmith.read_examples_with_runs- Full name
langsmith.langsmith_read_examples_with_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_examples_with_runs_grouped Write
Read Examples With Runs Grouped (POST /api/v1/datasets/{dataset_id}/group/runs).
- Lua path
app.integrations.langsmith.read_examples_with_runs_grouped- Full name
langsmith.langsmith_read_examples_with_runs_grouped
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_delta Write
Read Delta (POST /api/v1/datasets/{dataset_id}/runs/delta).
- Lua path
app.integrations.langsmith.read_delta- Full name
langsmith.langsmith_read_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_delta_stream Write
Read Delta Stream (POST /api/v1/datasets/{dataset_id}/runs/delta/stream).
- Lua path
app.integrations.langsmith.read_delta_stream- Full name
langsmith.langsmith_read_delta_stream
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_grouped_experiments Write
Read Grouped Experiments (POST /api/v1/datasets/{dataset_id}/experiments/grouped).
- Lua path
app.integrations.langsmith.read_grouped_experiments- Full name
langsmith.langsmith_read_grouped_experiments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_comparative_experiments Read
Read Comparative Experiments (GET /api/v1/datasets/{dataset_id}/comparative).
- Lua path
app.integrations.langsmith.read_comparative_experiments- Full name
langsmith.langsmith_read_comparative_experiments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_comparative_experiment Write
Create Comparative Experiment (POST /api/v1/datasets/comparative).
- Lua path
app.integrations.langsmith.create_comparative_experiment- Full name
langsmith.langsmith_create_comparative_experiment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_comparative_experiment Write
Delete Comparative Experiment (DELETE /api/v1/datasets/comparative/{comparative_experiment_id}).
- Lua path
app.integrations.langsmith.delete_comparative_experiment- Full name
langsmith.langsmith_delete_comparative_experiment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
clone_dataset Write
Clone Dataset (POST /api/v1/datasets/clone).
- Lua path
app.integrations.langsmith.clone_dataset- Full name
langsmith.langsmith_clone_dataset
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_dataset_splits Read
Get Dataset Splits (GET /api/v1/datasets/{dataset_id}/splits).
- Lua path
app.integrations.langsmith.get_dataset_splits- Full name
langsmith.langsmith_get_dataset_splits
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_dataset_splits Write
Update Dataset Splits (PUT /api/v1/datasets/{dataset_id}/splits).
- Lua path
app.integrations.langsmith.update_dataset_splits- Full name
langsmith.langsmith_update_dataset_splits
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate Write
Generate (POST /api/v1/datasets/{dataset_id}/generate).
- Lua path
app.integrations.langsmith.generate- Full name
langsmith.langsmith_generate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dataset_handler Write
Dataset Handler (POST /api/v1/datasets/playground_experiment/batch).
- Lua path
app.integrations.langsmith.dataset_handler- Full name
langsmith.langsmith_dataset_handler
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
stream_dataset_handler Write
Stream Dataset Handler (POST /api/v1/datasets/playground_experiment/stream).
- Lua path
app.integrations.langsmith.stream_dataset_handler- Full name
langsmith.langsmith_stream_dataset_handler
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
studio_experiment Write
Studio Experiment (POST /api/v1/datasets/studio_experiment).
- Lua path
app.integrations.langsmith.studio_experiment- Full name
langsmith.langsmith_studio_experiment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_rules Read
List Rules (GET /api/v1/runs/rules).
- Lua path
app.integrations.langsmith.list_rules- Full name
langsmith.langsmith_list_rules
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_rule Write
Create Rule (POST /api/v1/runs/rules).
- Lua path
app.integrations.langsmith.create_rule- Full name
langsmith.langsmith_create_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
validate_rule Write
Validate Rule (POST /api/v1/runs/rules/validate).
- Lua path
app.integrations.langsmith.validate_rule- Full name
langsmith.langsmith_validate_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_rule Write
Update Rule (PATCH /api/v1/runs/rules/{rule_id}).
- Lua path
app.integrations.langsmith.update_rule- Full name
langsmith.langsmith_update_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_rule Write
Delete Rule (DELETE /api/v1/runs/rules/{rule_id}).
- Lua path
app.integrations.langsmith.delete_rule- Full name
langsmith.langsmith_delete_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
thread_preview Read
Thread Preview (GET /api/v1/runs/threads/{thread_id}).
- Lua path
app.integrations.langsmith.thread_preview- Full name
langsmith.langsmith_thread_preview
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_rule_logs Read
List Rule Logs (GET /api/v1/runs/rules/{rule_id}/logs).
- Lua path
app.integrations.langsmith.list_rule_logs- Full name
langsmith.langsmith_list_rule_logs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_rule_logs_v2 Read
List Rule Logs V2 (GET /api/v1/runs/rules/{rule_id}/logs/v2).
- Lua path
app.integrations.langsmith.list_rule_logs_v2- Full name
langsmith.langsmith_list_rule_logs_v2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_last_applied_rule Read
Get Last Applied Rule (GET /api/v1/runs/rules/{rule_id}/last_applied).
- Lua path
app.integrations.langsmith.get_last_applied_rule- Full name
langsmith.langsmith_get_last_applied_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
trigger_rule Write
Trigger Rule (POST /api/v1/runs/rules/{rule_id}/trigger).
- Lua path
app.integrations.langsmith.trigger_rule- Full name
langsmith.langsmith_trigger_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
trigger_rules Write
Trigger Rules (POST /api/v1/runs/rules/trigger).
- Lua path
app.integrations.langsmith.trigger_rules- Full name
langsmith.langsmith_trigger_rules
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_run Read
Read Run (GET /api/v1/runs/{run_id}).
- Lua path
app.integrations.langsmith.read_run- Full name
langsmith.langsmith_read_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_run Write
Update Run (PATCH /api/v1/runs/{run_id}).
- Lua path
app.integrations.langsmith.update_run- Full name
langsmith.langsmith_update_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
validate_runs_query Write
Validate Runs Query (POST /api/v1/runs/query/validate).
- Lua path
app.integrations.langsmith.validate_runs_query- Full name
langsmith.langsmith_validate_runs_query
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
query_runs Write
Query Runs (POST /api/v1/runs/query).
- Lua path
app.integrations.langsmith.query_runs- Full name
langsmith.langsmith_query_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_query_runs Write
Generate Query For Runs (POST /api/v1/runs/generate-query).
- Lua path
app.integrations.langsmith.generate_query_runs- Full name
langsmith.langsmith_generate_query_for_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
stats_runs Write
Stats Runs (POST /api/v1/runs/stats).
- Lua path
app.integrations.langsmith.stats_runs- Full name
langsmith.langsmith_stats_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
group_runs Write
Group Runs (POST /api/v1/runs/group).
- Lua path
app.integrations.langsmith.group_runs- Full name
langsmith.langsmith_group_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
stats_group_runs Write
Stats Group Runs (POST /api/v1/runs/group/stats).
- Lua path
app.integrations.langsmith.stats_group_runs- Full name
langsmith.langsmith_stats_group_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_runs_abac Write
Delete Runs Abac (POST /api/v1/runs/delete/traces).
- Lua path
app.integrations.langsmith.delete_runs_abac- Full name
langsmith.langsmith_delete_runs_abac
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_runs Write
Delete Runs (POST /api/v1/runs/delete).
- Lua path
app.integrations.langsmith.delete_runs- Full name
langsmith.langsmith_delete_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
evaluate_experiment_adhoc Write
Evaluate Experiment Adhoc (POST /api/v1/runs/experiments/{experiment_id}/evaluate).
- Lua path
app.integrations.langsmith.evaluate_experiment_adhoc- Full name
langsmith.langsmith_evaluate_experiment_adhoc
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_feedback_formula_ep Write
Create Feedback Formula Ep (POST /api/v1/feedback/formulas).
- Lua path
app.integrations.langsmith.create_feedback_formula_ep- Full name
langsmith.langsmith_create_feedback_formula_ep
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_feedback_formula_ep Read
List Feedback Formula Ep (GET /api/v1/feedback/formulas).
- Lua path
app.integrations.langsmith.list_feedback_formula_ep- Full name
langsmith.langsmith_list_feedback_formula_ep
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_feedback_formula_ep Read
Get Feedback Formula Ep (GET /api/v1/feedback/formulas/{feedback_formula_id}).
- Lua path
app.integrations.langsmith.get_feedback_formula_ep- Full name
langsmith.langsmith_get_feedback_formula_ep
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_feedback_formula_ep Write
Update Feedback Formula Ep (PUT /api/v1/feedback/formulas/{feedback_formula_id}).
- Lua path
app.integrations.langsmith.update_feedback_formula_ep- Full name
langsmith.langsmith_update_feedback_formula_ep
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_feedback_formula_endpoint Write
Delete Feedback Formula Endpoint (DELETE /api/v1/feedback/formulas/{feedback_formula_id}).
- Lua path
app.integrations.langsmith.delete_feedback_formula_endpoint- Full name
langsmith.langsmith_delete_feedback_formula_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_feedback Read
Read Feedback (GET /api/v1/feedback/{feedback_id}).
- Lua path
app.integrations.langsmith.read_feedback- Full name
langsmith.langsmith_read_feedback
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_feedback Write
Update Feedback (PATCH /api/v1/feedback/{feedback_id}).
- Lua path
app.integrations.langsmith.update_feedback- Full name
langsmith.langsmith_update_feedback
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_feedback Write
Delete Feedback (DELETE /api/v1/feedback/{feedback_id}).
- Lua path
app.integrations.langsmith.delete_feedback- Full name
langsmith.langsmith_delete_feedback
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_feedbacks Read
Read Feedbacks (GET /api/v1/feedback).
- Lua path
app.integrations.langsmith.read_feedbacks- Full name
langsmith.langsmith_read_feedbacks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_feedback Write
Create Feedback (POST /api/v1/feedback).
- Lua path
app.integrations.langsmith.create_feedback- Full name
langsmith.langsmith_create_feedback
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eagerly_create_feedback Write
Eagerly Create Feedback (POST /api/v1/feedback/eager).
- Lua path
app.integrations.langsmith.eagerly_create_feedback- Full name
langsmith.langsmith_eagerly_create_feedback
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_feedback_ingest_token Write
Create Feedback Ingest Token (POST /api/v1/feedback/tokens).
- Lua path
app.integrations.langsmith.create_feedback_ingest_token- Full name
langsmith.langsmith_create_feedback_ingest_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_feedback_ingest_tokens Read
List Feedback Ingest Tokens (GET /api/v1/feedback/tokens).
- Lua path
app.integrations.langsmith.list_feedback_ingest_tokens- Full name
langsmith.langsmith_list_feedback_ingest_tokens
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_feedback_with_token_get Read
Create Feedback With Token Get (GET /api/v1/feedback/tokens/{token}).
- Lua path
app.integrations.langsmith.create_feedback_with_token_get- Full name
langsmith.langsmith_create_feedback_with_token_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_feedback_with_token_post Write
Create Feedback With Token Post (POST /api/v1/feedback/tokens/{token}).
- Lua path
app.integrations.langsmith.create_feedback_with_token_post- Full name
langsmith.langsmith_create_feedback_with_token_post
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_message_json_schema Read
Get Message Json Schema (GET /api/v1/public/schemas/{version}/message.json).
- Lua path
app.integrations.langsmith.get_message_json_schema- Full name
langsmith.langsmith_get_message_json_schema
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_tool_def_json_schema Read
Get Tool Def Json Schema (GET /api/v1/public/schemas/{version}/tooldef.json).
- Lua path
app.integrations.langsmith.get_tool_def_json_schema- Full name
langsmith.langsmith_get_tool_def_json_schema
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_annotation_queues Read
Get Annotation Queues (GET /api/v1/annotation-queues).
- Lua path
app.integrations.langsmith.get_annotation_queues- Full name
langsmith.langsmith_get_annotation_queues
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_annotation_queue Write
Create Annotation Queue (POST /api/v1/annotation-queues).
- Lua path
app.integrations.langsmith.create_annotation_queue- Full name
langsmith.langsmith_create_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_annotation_queues Write
Delete Annotation Queues (DELETE /api/v1/annotation-queues).
- Lua path
app.integrations.langsmith.delete_annotation_queues- Full name
langsmith.langsmith_delete_annotation_queues
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
populate_annotation_queue Write
Populate Annotation Queue (POST /api/v1/annotation-queues/populate).
- Lua path
app.integrations.langsmith.populate_annotation_queue- Full name
langsmith.langsmith_populate_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_annotation_queue Write
Delete Annotation Queue (DELETE /api/v1/annotation-queues/{queue_id}).
- Lua path
app.integrations.langsmith.delete_annotation_queue- Full name
langsmith.langsmith_delete_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_annotation_queue Write
Update Annotation Queue (PATCH /api/v1/annotation-queues/{queue_id}).
- Lua path
app.integrations.langsmith.update_annotation_queue- Full name
langsmith.langsmith_update_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_annotation_queue Read
Get Annotation Queue (GET /api/v1/annotation-queues/{queue_id}).
- Lua path
app.integrations.langsmith.get_annotation_queue- Full name
langsmith.langsmith_get_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_runs_annotation_queue Write
Add Runs To Annotation Queue (POST /api/v1/annotation-queues/{queue_id}/runs).
- Lua path
app.integrations.langsmith.add_runs_annotation_queue- Full name
langsmith.langsmith_add_runs_to_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_runs_from_annotation_queue Read
Get Runs From Annotation Queue (GET /api/v1/annotation-queues/{queue_id}/runs).
- Lua path
app.integrations.langsmith.get_runs_from_annotation_queue- Full name
langsmith.langsmith_get_runs_from_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_runs_annotation_queue_by_key Write
Add Runs To Annotation Queue By Key (POST /api/v1/annotation-queues/{queue_id}/runs/by-key).
- Lua path
app.integrations.langsmith.add_runs_annotation_queue_by_key- Full name
langsmith.langsmith_add_runs_to_annotation_queue_by_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
export_annotation_queue_archived_runs Write
Export Annotation Queue Archived Runs (POST /api/v1/annotation-queues/{queue_id}/export).
- Lua path
app.integrations.langsmith.export_annotation_queue_archived_runs- Full name
langsmith.langsmith_export_annotation_queue_archived_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_run_from_annotation_queue Read
Get Run From Annotation Queue (GET /api/v1/annotation-queues/{queue_id}/run/{index}).
- Lua path
app.integrations.langsmith.get_run_from_annotation_queue- Full name
langsmith.langsmith_get_run_from_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_annotation_queues_run Read
Get Annotation Queues For Run (GET /api/v1/annotation-queues/{run_id}/queues).
- Lua path
app.integrations.langsmith.get_annotation_queues_run- Full name
langsmith.langsmith_get_annotation_queues_for_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_run_annotation_queue Write
Update Run In Annotation Queue (PATCH /api/v1/annotation-queues/{queue_id}/runs/{queue_run_id}).
- Lua path
app.integrations.langsmith.update_run_annotation_queue- Full name
langsmith.langsmith_update_run_in_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_run_from_annotation_queue Write
Delete Run From Annotation Queue (DELETE /api/v1/annotation-queues/{queue_id}/runs/{queue_run_id}).
- Lua path
app.integrations.langsmith.delete_run_from_annotation_queue- Full name
langsmith.langsmith_delete_run_from_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_runs_from_annotation_queue Write
Delete Runs From Annotation Queue (POST /api/v1/annotation-queues/{queue_id}/runs/delete).
- Lua path
app.integrations.langsmith.delete_runs_from_annotation_queue- Full name
langsmith.langsmith_delete_runs_from_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_total_size_from_annotation_queue Read
Get Total Size From Annotation Queue (GET /api/v1/annotation-queues/{queue_id}/total_size).
- Lua path
app.integrations.langsmith.get_total_size_from_annotation_queue- Full name
langsmith.langsmith_get_total_size_from_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_total_archived_from_annotation_queue Read
Get Total Archived From Annotation Queue (GET /api/v1/annotation-queues/{queue_id}/total_archived).
- Lua path
app.integrations.langsmith.get_total_archived_from_annotation_queue- Full name
langsmith.langsmith_get_total_archived_from_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_size_from_annotation_queue Read
Get Size From Annotation Queue (GET /api/v1/annotation-queues/{queue_id}/size).
- Lua path
app.integrations.langsmith.get_size_from_annotation_queue- Full name
langsmith.langsmith_get_size_from_annotation_queue
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_identity_annotation_queue_run_status Write
Create Identity Annotation Queue Run Status (POST /api/v1/annotation-queues/status/{annotation_queue_run_id}).
- Lua path
app.integrations.langsmith.create_identity_annotation_queue_run_status- Full name
langsmith.langsmith_create_identity_annotation_queue_run_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
resolve_annotation_queue_run Read
Resolve Annotation Queue Run (GET /api/v1/annotation-queues/{queue_id}/runs/resolve/{queue_run_id}).
- Lua path
app.integrations.langsmith.resolve_annotation_queue_run- Full name
langsmith.langsmith_resolve_annotation_queue_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
execute Write
Execute (POST /api/v1/ace/execute).
- Lua path
app.integrations.langsmith.execute- Full name
langsmith.langsmith_execute
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_bulk_exports Read
Get Bulk Exports (GET /api/v1/bulk-exports).
- Lua path
app.integrations.langsmith.get_bulk_exports- Full name
langsmith.langsmith_get_bulk_exports
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_bulk_export Write
Create Bulk Export (POST /api/v1/bulk-exports).
- Lua path
app.integrations.langsmith.create_bulk_export- Full name
langsmith.langsmith_create_bulk_export
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_bulk_export_destinations Read
Get Bulk Export Destinations (GET /api/v1/bulk-exports/destinations).
- Lua path
app.integrations.langsmith.get_bulk_export_destinations- Full name
langsmith.langsmith_get_bulk_export_destinations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_bulk_export_destination Write
Create Bulk Export Destination (POST /api/v1/bulk-exports/destinations).
- Lua path
app.integrations.langsmith.create_bulk_export_destination- Full name
langsmith.langsmith_create_bulk_export_destination
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_bulk_export_runs_filtered Read
Get Bulk Export Runs Filtered (GET /api/v1/bulk-exports/runs).
- Lua path
app.integrations.langsmith.get_bulk_export_runs_filtered- Full name
langsmith.langsmith_get_bulk_export_runs_filtered
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_bulk_export Read
Get Bulk Export (GET /api/v1/bulk-exports/{bulk_export_id}).
- Lua path
app.integrations.langsmith.get_bulk_export- Full name
langsmith.langsmith_get_bulk_export
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cancel_bulk_export Write
Cancel Bulk Export (PATCH /api/v1/bulk-exports/{bulk_export_id}).
- Lua path
app.integrations.langsmith.cancel_bulk_export- Full name
langsmith.langsmith_cancel_bulk_export
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_bulk_export_destination Read
Get Bulk Export Destination (GET /api/v1/bulk-exports/destinations/{destination_id}).
- Lua path
app.integrations.langsmith.get_bulk_export_destination- Full name
langsmith.langsmith_get_bulk_export_destination
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_bulk_export_destination Write
Update Bulk Export Destination (PATCH /api/v1/bulk-exports/destinations/{destination_id}).
- Lua path
app.integrations.langsmith.update_bulk_export_destination- Full name
langsmith.langsmith_update_bulk_export_destination
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_bulk_export_runs Read
Get Bulk Export Runs (GET /api/v1/bulk-exports/{bulk_export_id}/runs).
- Lua path
app.integrations.langsmith.get_bulk_export_runs- Full name
langsmith.langsmith_get_bulk_export_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_bulk_export_run Read
Get Bulk Export Run (GET /api/v1/bulk-exports/{bulk_export_id}/runs/{run_id}).
- Lua path
app.integrations.langsmith.get_bulk_export_run- Full name
langsmith.langsmith_get_bulk_export_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_feedback_configs_endpoint Read
List Feedback Configs Endpoint (GET /api/v1/feedback-configs).
- Lua path
app.integrations.langsmith.list_feedback_configs_endpoint- Full name
langsmith.langsmith_list_feedback_configs_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_feedback_config_endpoint Write
Create Feedback Config Endpoint (POST /api/v1/feedback-configs).
- Lua path
app.integrations.langsmith.create_feedback_config_endpoint- Full name
langsmith.langsmith_create_feedback_config_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_feedback_config_endpoint Write
Update Feedback Config Endpoint (PATCH /api/v1/feedback-configs).
- Lua path
app.integrations.langsmith.update_feedback_config_endpoint- Full name
langsmith.langsmith_update_feedback_config_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_feedback_config_endpoint Write
Delete Feedback Config Endpoint (DELETE /api/v1/feedback-configs).
- Lua path
app.integrations.langsmith.delete_feedback_config_endpoint- Full name
langsmith.langsmith_delete_feedback_config_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_model_price_map Read
Read Model Price Map (GET /api/v1/model-price-map).
- Lua path
app.integrations.langsmith.read_model_price_map- Full name
langsmith.langsmith_read_model_price_map
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_new_model_price Write
Create New Model Price (POST /api/v1/model-price-map).
- Lua path
app.integrations.langsmith.create_new_model_price- Full name
langsmith.langsmith_create_new_model_price
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_model_price Write
Update Model Price (PUT /api/v1/model-price-map/{id}).
- Lua path
app.integrations.langsmith.update_model_price- Full name
langsmith.langsmith_update_model_price
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_model_price Write
Delete Model Price (DELETE /api/v1/model-price-map/{id}).
- Lua path
app.integrations.langsmith.delete_model_price- Full name
langsmith.langsmith_delete_model_price
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_usage_limits Read
List Usage Limits (GET /api/v1/usage-limits).
- Lua path
app.integrations.langsmith.list_usage_limits- Full name
langsmith.langsmith_list_usage_limits
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upsert_usage_limit Write
Upsert Usage Limit (PUT /api/v1/usage-limits).
- Lua path
app.integrations.langsmith.upsert_usage_limit- Full name
langsmith.langsmith_upsert_usage_limit
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_org_usage_limits Read
List Org Usage Limits (GET /api/v1/usage-limits/org).
- Lua path
app.integrations.langsmith.list_org_usage_limits- Full name
langsmith.langsmith_list_org_usage_limits
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_usage_limit Write
Delete Usage Limit (DELETE /api/v1/usage-limits/{usage_limit_id}).
- Lua path
app.integrations.langsmith.delete_usage_limit- Full name
langsmith.langsmith_delete_usage_limit
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
invoke_prompt Write
Invoke Prompt (POST /api/v1/prompts/invoke_prompt).
- Lua path
app.integrations.langsmith.invoke_prompt- Full name
langsmith.langsmith_invoke_prompt
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
prompt_canvas Write
Prompt Canvas (POST /api/v1/prompts/canvas).
- Lua path
app.integrations.langsmith.prompt_canvas- Full name
langsmith.langsmith_prompt_canvas
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_prompt_webhooks Read
List Prompt Webhooks (GET /api/v1/prompt-webhooks).
- Lua path
app.integrations.langsmith.list_prompt_webhooks- Full name
langsmith.langsmith_list_prompt_webhooks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_prompt_webhook Write
Create Prompt Webhook (POST /api/v1/prompt-webhooks).
- Lua path
app.integrations.langsmith.create_prompt_webhook- Full name
langsmith.langsmith_create_prompt_webhook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_prompt_webhook Read
Get Prompt Webhook (GET /api/v1/prompt-webhooks/{webhook_id}).
- Lua path
app.integrations.langsmith.get_prompt_webhook- Full name
langsmith.langsmith_get_prompt_webhook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_prompt_webhook Write
Update Prompt Webhook (PATCH /api/v1/prompt-webhooks/{webhook_id}).
- Lua path
app.integrations.langsmith.update_prompt_webhook- Full name
langsmith.langsmith_update_prompt_webhook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_prompt_webhook Write
Delete Prompt Webhook (DELETE /api/v1/prompt-webhooks/{webhook_id}).
- Lua path
app.integrations.langsmith.delete_prompt_webhook- Full name
langsmith.langsmith_delete_prompt_webhook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
test_prompt_webhook Write
Test Prompt Webhook (POST /api/v1/prompt-webhooks/test).
- Lua path
app.integrations.langsmith.test_prompt_webhook- Full name
langsmith.langsmith_test_prompt_webhook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_playground_settings Read
List Playground Settings (GET /api/v1/playground-settings).
- Lua path
app.integrations.langsmith.list_playground_settings- Full name
langsmith.langsmith_list_playground_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_playground_settings Write
Create Playground Settings (POST /api/v1/playground-settings).
- Lua path
app.integrations.langsmith.create_playground_settings- Full name
langsmith.langsmith_create_playground_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_playground_settings Read
Get Playground Settings (GET /api/v1/playground-settings/{playground_settings_id}).
- Lua path
app.integrations.langsmith.get_playground_settings- Full name
langsmith.langsmith_get_playground_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_playground_settings Write
Update Playground Settings (PATCH /api/v1/playground-settings/{playground_settings_id}).
- Lua path
app.integrations.langsmith.update_playground_settings- Full name
langsmith.langsmith_update_playground_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_playground_settings Write
Delete Playground Settings (DELETE /api/v1/playground-settings/{playground_settings_id}).
- Lua path
app.integrations.langsmith.delete_playground_settings- Full name
langsmith.langsmith_delete_playground_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
clone_section Write
Clone Section (POST /api/v1/charts/section/clone).
- Lua path
app.integrations.langsmith.clone_section- Full name
langsmith.langsmith_clone_section
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_sections Read
Read Sections (GET /api/v1/charts/section).
- Lua path
app.integrations.langsmith.read_sections- Full name
langsmith.langsmith_read_sections
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_section Write
Create Section (POST /api/v1/charts/section).
- Lua path
app.integrations.langsmith.create_section- Full name
langsmith.langsmith_create_section
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_charts Write
Read Charts (POST /api/v1/charts).
- Lua path
app.integrations.langsmith.read_charts- Full name
langsmith.langsmith_read_charts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_chart_preview Write
Read Chart Preview (POST /api/v1/charts/preview).
- Lua path
app.integrations.langsmith.read_chart_preview- Full name
langsmith.langsmith_read_chart_preview
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_chart Write
Create Chart (POST /api/v1/charts/create).
- Lua path
app.integrations.langsmith.create_chart- Full name
langsmith.langsmith_create_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_single_chart Write
Read Single Chart (POST /api/v1/charts/{chart_id}).
- Lua path
app.integrations.langsmith.read_single_chart- Full name
langsmith.langsmith_read_single_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_chart Write
Update Chart (PATCH /api/v1/charts/{chart_id}).
- Lua path
app.integrations.langsmith.update_chart- Full name
langsmith.langsmith_update_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_chart Write
Delete Chart (DELETE /api/v1/charts/{chart_id}).
- Lua path
app.integrations.langsmith.delete_chart- Full name
langsmith.langsmith_delete_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
read_single_section Write
Read Single Section (POST /api/v1/charts/section/{section_id}).
- Lua path
app.integrations.langsmith.read_single_section- Full name
langsmith.langsmith_read_single_section
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_section Write
Update Section (PATCH /api/v1/charts/section/{section_id}).
- Lua path
app.integrations.langsmith.update_section- Full name
langsmith.langsmith_update_section
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_section Write
Delete Section (DELETE /api/v1/charts/section/{section_id}).
- Lua path
app.integrations.langsmith.delete_section- Full name
langsmith.langsmith_delete_section
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_read_sections Read
Org Read Sections (GET /api/v1/org-charts/section).
- Lua path
app.integrations.langsmith.org_read_sections- Full name
langsmith.langsmith_org_read_sections
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_create_section Write
Org Create Section (POST /api/v1/org-charts/section).
- Lua path
app.integrations.langsmith.org_create_section- Full name
langsmith.langsmith_org_create_section
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_read_charts Write
Org Read Charts (POST /api/v1/org-charts).
- Lua path
app.integrations.langsmith.org_read_charts- Full name
langsmith.langsmith_org_read_charts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_read_chart_preview Write
Org Read Chart Preview (POST /api/v1/org-charts/preview).
- Lua path
app.integrations.langsmith.org_read_chart_preview- Full name
langsmith.langsmith_org_read_chart_preview
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_create_chart Write
Org Create Chart (POST /api/v1/org-charts/create).
- Lua path
app.integrations.langsmith.org_create_chart- Full name
langsmith.langsmith_org_create_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_read_single_chart Write
Org Read Single Chart (POST /api/v1/org-charts/{chart_id}).
- Lua path
app.integrations.langsmith.org_read_single_chart- Full name
langsmith.langsmith_org_read_single_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_update_chart Write
Org Update Chart (PATCH /api/v1/org-charts/{chart_id}).
- Lua path
app.integrations.langsmith.org_update_chart- Full name
langsmith.langsmith_org_update_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_delete_chart Write
Org Delete Chart (DELETE /api/v1/org-charts/{chart_id}).
- Lua path
app.integrations.langsmith.org_delete_chart- Full name
langsmith.langsmith_org_delete_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_read_single_section Write
Org Read Single Section (POST /api/v1/org-charts/section/{section_id}).
- Lua path
app.integrations.langsmith.org_read_single_section- Full name
langsmith.langsmith_org_read_single_section
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_update_section Write
Org Update Section (PATCH /api/v1/org-charts/section/{section_id}).
- Lua path
app.integrations.langsmith.org_update_section- Full name
langsmith.langsmith_org_update_section
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
org_delete_section Write
Org Delete Section (DELETE /api/v1/org-charts/section/{section_id}).
- Lua path
app.integrations.langsmith.org_delete_section- Full name
langsmith.langsmith_org_delete_section
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_tools Read
Get Tools (GET /api/v1/mcp/tools).
- Lua path
app.integrations.langsmith.get_tools- Full name
langsmith.langsmith_get_tools
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
invalidate_tools_cache Write
Invalidate Tools Cache (DELETE /api/v1/mcp/tools).
- Lua path
app.integrations.langsmith.invalidate_tools_cache- Full name
langsmith.langsmith_invalidate_tools_cache
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
proxy_get Read
Proxy Get (GET /api/v1/mcp/proxy).
- Lua path
app.integrations.langsmith.proxy_get- Full name
langsmith.langsmith_proxy_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
proxy Write
Proxy (POST /api/v1/mcp/proxy).
- Lua path
app.integrations.langsmith.proxy- Full name
langsmith.langsmith_proxy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_organizations Read
List Organizations (GET /api/v1/orgs).
- Lua path
app.integrations.langsmith.list_organizations- Full name
langsmith.langsmith_list_organizations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_organization Write
Create Organization (POST /api/v1/orgs).
- Lua path
app.integrations.langsmith.create_organization- Full name
langsmith.langsmith_create_organization
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_customers_and_get_stripe_setup_intent Write
Create Customers And Get Stripe Setup Intent (POST /api/v1/orgs/current/setup).
- Lua path
app.integrations.langsmith.create_customers_and_get_stripe_setup_intent- Full name
langsmith.langsmith_create_customers_and_get_stripe_setup_intent
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_organization_info Read
Get Organization Info (GET /api/v1/orgs/current).
- Lua path
app.integrations.langsmith.get_organization_info- Full name
langsmith.langsmith_get_organization_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_organization_info Read
Get Current Organization Info (GET /api/v1/orgs/current/info).
- Lua path
app.integrations.langsmith.get_current_organization_info- Full name
langsmith.langsmith_get_current_organization_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_current_organization_info Write
Update Current Organization Info (PATCH /api/v1/orgs/current/info).
- Lua path
app.integrations.langsmith.update_current_organization_info- Full name
langsmith.langsmith_update_current_organization_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_organization_billing_info Read
Get Organization Billing Info (GET /api/v1/orgs/current/billing).
- Lua path
app.integrations.langsmith.get_organization_billing_info- Full name
langsmith.langsmith_get_organization_billing_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_dashboard Read
Get Dashboard (GET /api/v1/orgs/current/dashboard).
- Lua path
app.integrations.langsmith.get_dashboard- Full name
langsmith.langsmith_get_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
payment_method_created Write
On Payment Method Created (POST /api/v1/orgs/current/payment-method).
- Lua path
app.integrations.langsmith.payment_method_created- Full name
langsmith.langsmith_on_payment_method_created
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_company_info Read
Get Company Info (GET /api/v1/orgs/current/business-info).
- Lua path
app.integrations.langsmith.get_company_info- Full name
langsmith.langsmith_get_company_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
set_company_info Write
Set Company Info (POST /api/v1/orgs/current/business-info).
- Lua path
app.integrations.langsmith.set_company_info- Full name
langsmith.langsmith_set_company_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
change_payment_plan Write
Change Payment Plan (POST /api/v1/orgs/current/plan).
- Lua path
app.integrations.langsmith.change_payment_plan- Full name
langsmith.langsmith_change_payment_plan
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_organization_roles Read
List Organization Roles (GET /api/v1/orgs/current/roles).
- Lua path
app.integrations.langsmith.list_organization_roles- Full name
langsmith.langsmith_list_organization_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_organization_roles Write
Create Organization Roles (POST /api/v1/orgs/current/roles).
- Lua path
app.integrations.langsmith.create_organization_roles- Full name
langsmith.langsmith_create_organization_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_organization_roles Write
Delete Organization Roles (DELETE /api/v1/orgs/current/roles/{role_id}).
- Lua path
app.integrations.langsmith.delete_organization_roles- Full name
langsmith.langsmith_delete_organization_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_organization_roles Write
Update Organization Roles (PATCH /api/v1/orgs/current/roles/{role_id}).
- Lua path
app.integrations.langsmith.update_organization_roles- Full name
langsmith.langsmith_update_organization_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_permissions Read
List Permissions (GET /api/v1/orgs/permissions).
- Lua path
app.integrations.langsmith.list_permissions- Full name
langsmith.langsmith_list_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_pending_organization_invites Read
List Pending Organization Invites (GET /api/v1/orgs/pending).
- Lua path
app.integrations.langsmith.list_pending_organization_invites- Full name
langsmith.langsmith_list_pending_organization_invites
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_org_members Read
Get Current Org Members (GET /api/v1/orgs/current/members).
- Lua path
app.integrations.langsmith.get_current_org_members- Full name
langsmith.langsmith_get_current_org_members
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_member_current_org Write
Add Member To Current Org (POST /api/v1/orgs/current/members).
- Lua path
app.integrations.langsmith.add_member_current_org- Full name
langsmith.langsmith_add_member_to_current_org
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_active_org_members Read
Get Current Active Org Members (GET /api/v1/orgs/current/members/active).
- Lua path
app.integrations.langsmith.get_current_active_org_members- Full name
langsmith.langsmith_get_current_active_org_members
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_pending_org_members Read
Get Current Pending Org Members (GET /api/v1/orgs/current/members/pending).
- Lua path
app.integrations.langsmith.get_current_pending_org_members- Full name
langsmith.langsmith_get_current_pending_org_members
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_members_current_org_batch Write
Add Members To Current Org Batch (POST /api/v1/orgs/current/members/batch).
- Lua path
app.integrations.langsmith.add_members_current_org_batch- Full name
langsmith.langsmith_add_members_to_current_org_batch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_basic_auth_members_current_org Write
Add Basic Auth Members To Current Org (POST /api/v1/orgs/current/members/basic/batch).
- Lua path
app.integrations.langsmith.add_basic_auth_members_current_org- Full name
langsmith.langsmith_add_basic_auth_members_to_current_org
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_current_org_pending_member Write
Delete Current Org Pending Member (DELETE /api/v1/orgs/current/members/{identity_id}/pending).
- Lua path
app.integrations.langsmith.delete_current_org_pending_member- Full name
langsmith.langsmith_delete_current_org_pending_member
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_pending_organization_invite Write
Delete Pending Organization Invite (DELETE /api/v1/orgs/pending/{organization_id}).
- Lua path
app.integrations.langsmith.delete_pending_organization_invite- Full name
langsmith.langsmith_delete_pending_organization_invite
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
claim_pending_organization_invite Write
Claim Pending Organization Invite (POST /api/v1/orgs/pending/{organization_id}/claim).
- Lua path
app.integrations.langsmith.claim_pending_organization_invite- Full name
langsmith.langsmith_claim_pending_organization_invite
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_member_from_current_org Write
Remove Member From Current Org (DELETE /api/v1/orgs/current/members/{identity_id}).
- Lua path
app.integrations.langsmith.remove_member_from_current_org- Full name
langsmith.langsmith_remove_member_from_current_org
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_current_org_member Write
Update Current Org Member (PATCH /api/v1/orgs/current/members/{identity_id}).
- Lua path
app.integrations.langsmith.update_current_org_member- Full name
langsmith.langsmith_update_current_org_member
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_current_user Write
Update Current User (PATCH /api/v1/orgs/members/basic).
- Lua path
app.integrations.langsmith.update_current_user- Full name
langsmith.langsmith_update_current_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_sso_settings Read
Get Current Sso Settings (GET /api/v1/orgs/current/sso-settings).
- Lua path
app.integrations.langsmith.get_current_sso_settings- Full name
langsmith.langsmith_get_current_sso_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_sso_settings Write
Create Sso Settings (POST /api/v1/orgs/current/sso-settings).
- Lua path
app.integrations.langsmith.create_sso_settings- Full name
langsmith.langsmith_create_sso_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_sso_settings Write
Update Sso Settings (PATCH /api/v1/orgs/current/sso-settings/{id}).
- Lua path
app.integrations.langsmith.update_sso_settings- Full name
langsmith.langsmith_update_sso_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_sso_settings Write
Delete Sso Settings (DELETE /api/v1/orgs/current/sso-settings/{id}).
- Lua path
app.integrations.langsmith.delete_sso_settings- Full name
langsmith.langsmith_delete_sso_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_allowed_login_methods Write
Update Allowed Login Methods (PATCH /api/v1/orgs/current/login-methods).
- Lua path
app.integrations.langsmith.update_allowed_login_methods- Full name
langsmith.langsmith_update_allowed_login_methods
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_org_usage Read
Get Org Usage (GET /api/v1/orgs/current/billing/usage).
- Lua path
app.integrations.langsmith.get_org_usage- Full name
langsmith.langsmith_get_org_usage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_granular_usage Read
Get Granular Usage (GET /api/v1/orgs/current/billing/granular-usage).
- Lua path
app.integrations.langsmith.get_granular_usage- Full name
langsmith.langsmith_get_granular_usage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
export_granular_usage_csv Read
Export Granular Usage Csv (GET /api/v1/orgs/current/billing/granular-usage/export).
- Lua path
app.integrations.langsmith.export_granular_usage_csv- Full name
langsmith.langsmith_export_granular_usage_csv
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_user_login_methods Read
Get Current User Login Methods (GET /api/v1/orgs/current/user/login-methods).
- Lua path
app.integrations.langsmith.get_current_user_login_methods- Full name
langsmith.langsmith_get_current_user_login_methods
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_stripe_checkout_sessions_endpoint Write
Create Stripe Checkout Sessions Endpoint (POST /api/v1/orgs/current/stripe_checkout_session).
- Lua path
app.integrations.langsmith.create_stripe_checkout_sessions_endpoint- Full name
langsmith.langsmith_create_stripe_checkout_sessions_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_stripe_account_links_endpoint Write
Create Stripe Account Links Endpoint (POST /api/v1/orgs/current/stripe_account_links).
- Lua path
app.integrations.langsmith.create_stripe_account_links_endpoint- Full name
langsmith.langsmith_create_stripe_account_links_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_org_service_keys Read
List Org Service Keys (GET /api/v1/orgs/current/service-keys).
- Lua path
app.integrations.langsmith.list_org_service_keys- Full name
langsmith.langsmith_list_org_service_keys
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_org_service_key Write
Create Org Service Key (POST /api/v1/orgs/current/service-keys).
- Lua path
app.integrations.langsmith.create_org_service_key- Full name
langsmith.langsmith_create_org_service_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_org_service_key Write
Delete Org Service Key (DELETE /api/v1/orgs/current/service-keys/{api_key_id}).
- Lua path
app.integrations.langsmith.delete_org_service_key- Full name
langsmith.langsmith_delete_org_service_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_org_personal_access_tokens Read
List Org Personal Access Tokens (GET /api/v1/orgs/current/personal-access-tokens).
- Lua path
app.integrations.langsmith.list_org_personal_access_tokens- Full name
langsmith.langsmith_list_org_personal_access_tokens
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_org_personal_access_token Write
Create Org Personal Access Token (POST /api/v1/orgs/current/personal-access-tokens).
- Lua path
app.integrations.langsmith.create_org_personal_access_token- Full name
langsmith.langsmith_create_org_personal_access_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_org_personal_access_token Write
Delete Org Personal Access Token (DELETE /api/v1/orgs/current/personal-access-tokens/{pat_id}).
- Lua path
app.integrations.langsmith.delete_org_personal_access_token- Full name
langsmith.langsmith_delete_org_personal_access_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
set_default_sso_provision Write
Set Default Sso Provision (POST /api/v1/orgs/current/set-default-sso-provision).
- Lua path
app.integrations.langsmith.set_default_sso_provision- Full name
langsmith.langsmith_set_default_sso_provision
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
login Write
Login (POST /api/v1/login).
- Lua path
app.integrations.langsmith.login- Full name
langsmith.langsmith_login
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
send_sso_email_confirmation Write
Send Sso Email Confirmation (POST /api/v1/sso/email-verification/send).
- Lua path
app.integrations.langsmith.send_sso_email_confirmation- Full name
langsmith.langsmith_send_sso_email_confirmation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
check_sso_email_verification_status Write
Check Sso Email Verification Status (POST /api/v1/sso/email-verification/status).
- Lua path
app.integrations.langsmith.check_sso_email_verification_status- Full name
langsmith.langsmith_check_sso_email_verification_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
confirm_sso_user_email Write
Confirm Sso User Email (POST /api/v1/sso/email-verification/confirm).
- Lua path
app.integrations.langsmith.confirm_sso_user_email- Full name
langsmith.langsmith_confirm_sso_user_email
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_sso_settings Read
Get Sso Settings (GET /api/v1/sso/settings/{sso_login_slug}).
- Lua path
app.integrations.langsmith.get_sso_settings- Full name
langsmith.langsmith_get_sso_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
lookup_sso_by_email Write
Lookup Sso By Email (POST /api/v1/sso/email-lookup).
- Lua path
app.integrations.langsmith.lookup_sso_by_email- Full name
langsmith.langsmith_lookup_sso_by_email
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_api_v1_api_key Read
Get Api Keys (GET /api/v1/api-key).
- Lua path
app.integrations.langsmith.get_api_v1_api_key- Full name
langsmith.langsmith_get_api_v1_api_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_api_v1_api_key Write
Generate Api Key (POST /api/v1/api-key).
- Lua path
app.integrations.langsmith.post_api_v1_api_key- Full name
langsmith.langsmith_post_api_v1_api_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete Write
Delete Api Key (DELETE /api/v1/api-key/{api_key_id}).
- Lua path
app.integrations.langsmith.delete- Full name
langsmith.langsmith_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_personal_access_tokens Read
Get Personal Access Tokens (GET /api/v1/api-key/current).
- Lua path
app.integrations.langsmith.get_personal_access_tokens- Full name
langsmith.langsmith_get_personal_access_tokens
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_personal_access_token Write
Generate Personal Access Token (POST /api/v1/api-key/current).
- Lua path
app.integrations.langsmith.generate_personal_access_token- Full name
langsmith.langsmith_generate_personal_access_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_personal_access_token Write
Delete Personal Access Token (DELETE /api/v1/api-key/current/{pat_id}).
- Lua path
app.integrations.langsmith.delete_personal_access_token- Full name
langsmith.langsmith_delete_personal_access_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_tenants Read
List Tenants (GET /api/v1/tenants).
- Lua path
app.integrations.langsmith.list_tenants- Full name
langsmith.langsmith_list_tenants
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_tenant Write
Create Tenant (POST /api/v1/tenants).
- Lua path
app.integrations.langsmith.create_tenant- Full name
langsmith.langsmith_create_tenant
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_onboarding_state Read
Get Onboarding State (GET /api/v1/me/onboarding_state).
- Lua path
app.integrations.langsmith.get_onboarding_state- Full name
langsmith.langsmith_get_onboarding_state
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_onboarding_state Write
Create Onboarding State (POST /api/v1/me/onboarding_state).
- Lua path
app.integrations.langsmith.create_onboarding_state- Full name
langsmith.langsmith_create_onboarding_state
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_onboarding_state_field Write
Update Onboarding State Field (PUT /api/v1/me/onboarding_state/{field}).
- Lua path
app.integrations.langsmith.update_onboarding_state_field- Full name
langsmith.langsmith_update_onboarding_state_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_user_id Read
Get Ls User Id (GET /api/v1/me/ls_user_id).
- Lua path
app.integrations.langsmith.get_user_id- Full name
langsmith.langsmith_get_ls_user_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_service_accounts Read
Get Service Accounts (GET /api/v1/service-accounts).
- Lua path
app.integrations.langsmith.get_service_accounts- Full name
langsmith.langsmith_get_service_accounts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_service_account Write
Create Service Account (POST /api/v1/service-accounts).
- Lua path
app.integrations.langsmith.create_service_account- Full name
langsmith.langsmith_create_service_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_service_account Write
Delete Service Account (DELETE /api/v1/service-accounts/{service_account_id}).
- Lua path
app.integrations.langsmith.delete_service_account- Full name
langsmith.langsmith_delete_service_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_pending_workspace_invites Read
List Pending Workspace Invites (GET /api/v1/workspaces/pending).
- Lua path
app.integrations.langsmith.list_pending_workspace_invites- Full name
langsmith.langsmith_list_pending_workspace_invites
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_pending_workspace_invite Write
Delete Pending Workspace Invite (DELETE /api/v1/workspaces/pending/{id}).
- Lua path
app.integrations.langsmith.delete_pending_workspace_invite- Full name
langsmith.langsmith_delete_pending_workspace_invite
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
claim_pending_workspace_invite Write
Claim Pending Workspace Invite (POST /api/v1/workspaces/pending/{workspace_id}/claim).
- Lua path
app.integrations.langsmith.claim_pending_workspace_invite- Full name
langsmith.langsmith_claim_pending_workspace_invite
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_workspace_members Read
Get Current Workspace Members (GET /api/v1/workspaces/current/members).
- Lua path
app.integrations.langsmith.get_current_workspace_members- Full name
langsmith.langsmith_get_current_workspace_members
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_member_current_workspace Write
Add Member To Current Workspace (POST /api/v1/workspaces/current/members).
- Lua path
app.integrations.langsmith.add_member_current_workspace- Full name
langsmith.langsmith_add_member_to_current_workspace
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_active_workspace_members Read
Get Current Active Workspace Members (GET /api/v1/workspaces/current/members/active).
- Lua path
app.integrations.langsmith.get_current_active_workspace_members- Full name
langsmith.langsmith_get_current_active_workspace_members
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_pending_workspace_members Read
Get Current Pending Workspace Members (GET /api/v1/workspaces/current/members/pending).
- Lua path
app.integrations.langsmith.get_current_pending_workspace_members- Full name
langsmith.langsmith_get_current_pending_workspace_members
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_members_current_workspace_batch Write
Add Members To Current Workspace Batch (POST /api/v1/workspaces/current/members/batch).
- Lua path
app.integrations.langsmith.add_members_current_workspace_batch- Full name
langsmith.langsmith_add_members_to_current_workspace_batch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_current_workspace_member Write
Delete Current Workspace Member (DELETE /api/v1/workspaces/current/members/{identity_id}).
- Lua path
app.integrations.langsmith.delete_current_workspace_member- Full name
langsmith.langsmith_delete_current_workspace_member
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_current_workspace_member Write
Patch Current Workspace Member (PATCH /api/v1/workspaces/current/members/{identity_id}).
- Lua path
app.integrations.langsmith.patch_current_workspace_member- Full name
langsmith.langsmith_patch_current_workspace_member
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_current_workspace_pending_member Write
Delete Current Workspace Pending Member (DELETE /api/v1/workspaces/current/members/{identity_id}/pending).
- Lua path
app.integrations.langsmith.delete_current_workspace_pending_member- Full name
langsmith.langsmith_delete_current_workspace_pending_member
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_api_v1_ok Read
Ok (GET /api/v1/ok).
- Lua path
app.integrations.langsmith.get_api_v1_ok- Full name
langsmith.langsmith_get_api_v1_ok
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_settings Read
Get Settings (GET /api/v1/settings).
- Lua path
app.integrations.langsmith.get_settings- Full name
langsmith.langsmith_get_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
set_tenant_handle Write
Set Tenant Handle (POST /api/v1/settings/handle).
- Lua path
app.integrations.langsmith.set_tenant_handle- Full name
langsmith.langsmith_set_tenant_handle
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_repos Read
List Repos (GET /api/v1/repos).
- Lua path
app.integrations.langsmith.list_repos- Full name
langsmith.langsmith_list_repos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_repo Write
Create Repo (POST /api/v1/repos).
- Lua path
app.integrations.langsmith.create_repo- Full name
langsmith.langsmith_create_repo
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_repos Write
Delete Repos (DELETE /api/v1/repos).
- Lua path
app.integrations.langsmith.delete_repos- Full name
langsmith.langsmith_delete_repos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_repo Read
Get Repo (GET /api/v1/repos/{owner}/{repo}).
- Lua path
app.integrations.langsmith.get_repo- Full name
langsmith.langsmith_get_repo
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_repo Write
Update Repo (PATCH /api/v1/repos/{owner}/{repo}).
- Lua path
app.integrations.langsmith.update_repo- Full name
langsmith.langsmith_update_repo
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_repo Write
Delete Repo (DELETE /api/v1/repos/{owner}/{repo}).
- Lua path
app.integrations.langsmith.delete_repo- Full name
langsmith.langsmith_delete_repo
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fork_repo Write
Fork Repo (POST /api/v1/repos/{owner}/{repo}/fork).
- Lua path
app.integrations.langsmith.fork_repo- Full name
langsmith.langsmith_fork_repo
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_repo_tags Read
List Repo Tags (GET /api/v1/repos/tags).
- Lua path
app.integrations.langsmith.list_repo_tags- Full name
langsmith.langsmith_list_repo_tags
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
optimize_prompt_job Write
Optimize Prompt Job (POST /api/v1/repos/optimize-job).
- Lua path
app.integrations.langsmith.optimize_prompt_job- Full name
langsmith.langsmith_optimize_prompt_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
like_repo Write
Like Repo (POST /api/v1/likes/{owner}/{repo}).
- Lua path
app.integrations.langsmith.like_repo- Full name
langsmith.langsmith_like_repo
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_comment Write
Create Comment (POST /api/v1/comments/{owner}/{repo}).
- Lua path
app.integrations.langsmith.create_comment- Full name
langsmith.langsmith_create_comment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_comments Read
Get Comments (GET /api/v1/comments/{owner}/{repo}).
- Lua path
app.integrations.langsmith.get_comments- Full name
langsmith.langsmith_get_comments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_sub_comments Read
Get Sub Comments (GET /api/v1/comments/{owner}/{repo}/{parent_comment_id}).
- Lua path
app.integrations.langsmith.get_sub_comments- Full name
langsmith.langsmith_get_sub_comments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_sub_comment Write
Create Sub Comment (POST /api/v1/comments/{owner}/{repo}/{parent_comment_id}).
- Lua path
app.integrations.langsmith.create_sub_comment- Full name
langsmith.langsmith_create_sub_comment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
like_comment Write
Like Comment (POST /api/v1/comments/{owner}/{repo}/{parent_comment_id}/like).
- Lua path
app.integrations.langsmith.like_comment- Full name
langsmith.langsmith_like_comment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
unlike_comment Write
Unlike Comment (DELETE /api/v1/comments/{owner}/{repo}/{parent_comment_id}/like).
- Lua path
app.integrations.langsmith.unlike_comment- Full name
langsmith.langsmith_unlike_comment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_tags Read
Get Tags (GET /api/v1/repos/{owner}/{repo}/tags).
- Lua path
app.integrations.langsmith.get_tags- Full name
langsmith.langsmith_get_tags
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_tag Write
Create Tag (POST /api/v1/repos/{owner}/{repo}/tags).
- Lua path
app.integrations.langsmith.create_tag- Full name
langsmith.langsmith_create_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_tag Read
Get Tag (GET /api/v1/repos/{owner}/{repo}/tags/{tag_name}).
- Lua path
app.integrations.langsmith.get_tag- Full name
langsmith.langsmith_get_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_tag Write
Update Tag (PATCH /api/v1/repos/{owner}/{repo}/tags/{tag_name}).
- Lua path
app.integrations.langsmith.update_tag- Full name
langsmith.langsmith_update_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_tag Write
Delete Tag (DELETE /api/v1/repos/{owner}/{repo}/tags/{tag_name}).
- Lua path
app.integrations.langsmith.delete_tag- Full name
langsmith.langsmith_delete_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_repo_owners Read
List Repo Owners (GET /api/v1/repos/{owner}/{repo}/owners).
- Lua path
app.integrations.langsmith.list_repo_owners- Full name
langsmith.langsmith_list_repo_owners
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_repo_owner Write
Add Repo Owner (POST /api/v1/repos/{owner}/{repo}/owners).
- Lua path
app.integrations.langsmith.add_repo_owner- Full name
langsmith.langsmith_add_repo_owner
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_repo_owner Write
Remove Repo Owner (DELETE /api/v1/repos/{owner}/{repo}/owners).
- Lua path
app.integrations.langsmith.remove_repo_owner- Full name
langsmith.langsmith_remove_repo_owner
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_jobs Read
List Jobs (GET /api/v1/repos/{owner}/{repo}/optimization-jobs).
- Lua path
app.integrations.langsmith.list_jobs- Full name
langsmith.langsmith_list_jobs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_job Write
Create Job (POST /api/v1/repos/{owner}/{repo}/optimization-jobs).
- Lua path
app.integrations.langsmith.create_job- Full name
langsmith.langsmith_create_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_job Read
Get Job (GET /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}).
- Lua path
app.integrations.langsmith.get_job- Full name
langsmith.langsmith_get_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_job Write
Update Job (PATCH /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}).
- Lua path
app.integrations.langsmith.update_job- Full name
langsmith.langsmith_update_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_job Write
Delete Job (DELETE /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}).
- Lua path
app.integrations.langsmith.delete_job- Full name
langsmith.langsmith_delete_job
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_job_logs Read
List Job Logs (GET /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs).
- Lua path
app.integrations.langsmith.list_job_logs- Full name
langsmith.langsmith_list_job_logs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_log Write
Create Log (POST /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs).
- Lua path
app.integrations.langsmith.create_log- Full name
langsmith.langsmith_create_log
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_log Read
Get Log (GET /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs/{log_id}).
- Lua path
app.integrations.langsmith.get_log- Full name
langsmith.langsmith_get_log
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_log Write
Delete Log (DELETE /api/v1/repos/{owner}/{repo}/optimization-jobs/{job_id}/logs/{log_id}).
- Lua path
app.integrations.langsmith.delete_log- Full name
langsmith.langsmith_delete_log
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_well_known_oauth_authorization_server Read
Get OAuth2 authorization server metadata (GET /.well-known/oauth-authorization-server).
- Lua path
app.integrations.langsmith.get_well_known_oauth_authorization_server- Full name
langsmith.langsmith_get_well_known_oauth_authorization_server
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_api_v1_hub_environments Read
List hub environments (GET /api/v1/hub/environments).
- Lua path
app.integrations.langsmith.get_api_v1_hub_environments- Full name
langsmith.langsmith_get_api_v1_hub_environments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post Write
Create hub environments model (POST /api/v1/hub/environments).
- Lua path
app.integrations.langsmith.post- Full name
langsmith.langsmith_post
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_api_v1_hub_environments_id Write
Delete hub environments model (DELETE /api/v1/hub/environments/{id}).
- Lua path
app.integrations.langsmith.delete_api_v1_hub_environments_id- Full name
langsmith.langsmith_delete_api_v1_hub_environments_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch Write
Update hub environments model (PATCH /api/v1/hub/environments/{id}).
- Lua path
app.integrations.langsmith.patch- Full name
langsmith.langsmith_patch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_auth_public Read
Get public auth info (GET /auth/public).
- Lua path
app.integrations.langsmith.get_auth_public- Full name
langsmith.langsmith_get_auth_public
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_aws_marketplace_register Write
AWS Marketplace fulfillment URL registration (POST /aws-marketplace/register).
- Lua path
app.integrations.langsmith.post_aws_marketplace_register- Full name
langsmith.langsmith_post_aws_marketplace_register
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_commits_owner_repo Read
List commits (GET /commits/{owner}/{repo}).
- Lua path
app.integrations.langsmith.get_commits_owner_repo- Full name
langsmith.langsmith_get_commits_owner_repo
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_commits_owner_repo Write
Create a commit (POST /commits/{owner}/{repo}).
- Lua path
app.integrations.langsmith.post_commits_owner_repo- Full name
langsmith.langsmith_post_commits_owner_repo
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_commits_owner_repo_commit Read
Get a commit (GET /commits/{owner}/{repo}/{commit}).
- Lua path
app.integrations.langsmith.get_commits_owner_repo_commit- Full name
langsmith.langsmith_get_commits_owner_repo_commit
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_datasets_dataset_id_experiment_view_overrides Read
Get experiment view override configurations for a dataset (GET /datasets/{dataset_id}/experiment-view-overrides).
- Lua path
app.integrations.langsmith.get_datasets_dataset_id_experiment_view_overrides- Full name
langsmith.langsmith_get_datasets_dataset_id_experiment_view_overrides
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_datasets_dataset_id_experiment_view_overrides Write
Create new experiment view override configuration for a dataset (POST /datasets/{dataset_id}/experiment-view-overrides).
- Lua path
app.integrations.langsmith.post_datasets_dataset_id_experiment_view_overrides- Full name
langsmith.langsmith_post_datasets_dataset_id_experiment_view_overrides
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_datasets_dataset_id_experiment_view_overrides_id Read
Get experiment view override configuration by specific ID (GET /datasets/{dataset_id}/experiment-view-overrides/{id}).
- Lua path
app.integrations.langsmith.get_datasets_dataset_id_experiment_view_overrides_id- Full name
langsmith.langsmith_get_datasets_dataset_id_experiment_view_overrides_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_datasets_dataset_id_experiment_view_overrides_id Write
Delete experiment view override configuration (DELETE /datasets/{dataset_id}/experiment-view-overrides/{id}).
- Lua path
app.integrations.langsmith.delete_datasets_dataset_id_experiment_view_overrides_id- Full name
langsmith.langsmith_delete_datasets_dataset_id_experiment_view_overrides_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_datasets_dataset_id_experiment_view_overrides_id Write
Update existing experiment view override configuration (PATCH /datasets/{dataset_id}/experiment-view-overrides/{id}).
- Lua path
app.integrations.langsmith.patch_datasets_dataset_id_experiment_view_overrides_id- Full name
langsmith.langsmith_patch_datasets_dataset_id_experiment_view_overrides_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_me_providers_providertype Read
Get the authenticated user's provider user ID (GET /me/providers/{providerType}).
- Lua path
app.integrations.langsmith.get_me_providers_providertype- Full name
langsmith.langsmith_get_me_providers_providertype
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_oauth_authorize Read
Initiate OAuth2 authorization (GET /oauth/authorize).
- Lua path
app.integrations.langsmith.get_oauth_authorize- Full name
langsmith.langsmith_get_oauth_authorize
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_oauth_authorize_approve Write
Approve OAuth2 authorization request (POST /oauth/authorize/approve).
- Lua path
app.integrations.langsmith.post_oauth_authorize_approve- Full name
langsmith.langsmith_post_oauth_authorize_approve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_oauth_device_authorize Write
Authorize a device code (POST /oauth/device/authorize).
- Lua path
app.integrations.langsmith.post_oauth_device_authorize- Full name
langsmith.langsmith_post_oauth_device_authorize
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_oauth_device_code Write
Request OAuth2 device authorization (POST /oauth/device/code).
- Lua path
app.integrations.langsmith.post_oauth_device_code- Full name
langsmith.langsmith_post_oauth_device_code
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_oauth_revoke Write
Revoke an OAuth2 token (POST /oauth/revoke).
- Lua path
app.integrations.langsmith.post_oauth_revoke- Full name
langsmith.langsmith_post_oauth_revoke
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_oauth_token Write
Exchange grant for OAuth2 tokens (POST /oauth/token).
- Lua path
app.integrations.langsmith.post_oauth_token- Full name
langsmith.langsmith_post_oauth_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_repos_owner_repo_tags_tag_name_history Read
Get tag transition history (GET /repos/{owner}/{repo}/tags/{tag_name}/history).
- Lua path
app.integrations.langsmith.get_repos_owner_repo_tags_tag_name_history- Full name
langsmith.langsmith_get_repos_owner_repo_tags_tag_name_history
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_runs Write
Create a Run (POST /runs).
- Lua path
app.integrations.langsmith.post_runs- Full name
langsmith.langsmith_post_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_runs_batch Write
Ingest Runs (Batch JSON) (POST /runs/batch).
- Lua path
app.integrations.langsmith.post_runs_batch- Full name
langsmith.langsmith_post_runs_batch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_runs_multipart Write
Ingest Runs (Multipart) (POST /runs/multipart).
- Lua path
app.integrations.langsmith.post_runs_multipart- Full name
langsmith.langsmith_post_runs_multipart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_runs_run_id Write
Update a Run (PATCH /runs/{run_id}).
- Lua path
app.integrations.langsmith.patch_runs_run_id- Full name
langsmith.langsmith_patch_runs_run_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_agent_builder_integrations Read
Get Agent Builder integrations settings (GET /v1/agent-builder/integrations).
- Lua path
app.integrations.langsmith.get_v1_agent_builder_integrations- Full name
langsmith.langsmith_get_v1_agent_builder_integrations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
put_v1_agent_builder_integrations Write
Update Agent Builder integrations settings (PUT /v1/agent-builder/integrations).
- Lua path
app.integrations.langsmith.put_v1_agent_builder_integrations- Full name
langsmith.langsmith_put_v1_agent_builder_integrations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_beacon_usage_snapshot Write
Submit a self-hosted usage snapshot (POST /v1/beacon/usage-snapshot).
- Lua path
app.integrations.langsmith.post_v1_beacon_usage_snapshot- Full name
langsmith.langsmith_post_v1_beacon_usage_snapshot
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_agents Read
List agents (GET /v1/fleet/agents).
- Lua path
app.integrations.langsmith.get_v1_fleet_agents- Full name
langsmith.langsmith_get_v1_fleet_agents
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_agents Write
Create an agent (POST /v1/fleet/agents).
- Lua path
app.integrations.langsmith.post_v1_fleet_agents- Full name
langsmith.langsmith_post_v1_fleet_agents
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_agents_agentid Read
Get an agent (GET /v1/fleet/agents/{agentID}).
- Lua path
app.integrations.langsmith.get_v1_fleet_agents_agentid- Full name
langsmith.langsmith_get_v1_fleet_agents_agentid
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_fleet_agents_agentid Write
Update an agent (PATCH /v1/fleet/agents/{agentID}).
- Lua path
app.integrations.langsmith.patch_v1_fleet_agents_agentid- Full name
langsmith.langsmith_patch_v1_fleet_agents_agentid
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_auth_providers Read
List OAuth providers (GET /v1/fleet/auth-providers).
- Lua path
app.integrations.langsmith.get_v1_fleet_auth_providers- Full name
langsmith.langsmith_get_v1_fleet_auth_providers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_auth_providers Write
Register an OAuth provider (POST /v1/fleet/auth-providers).
- Lua path
app.integrations.langsmith.post_v1_fleet_auth_providers- Full name
langsmith.langsmith_post_v1_fleet_auth_providers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_auth_providers_discover Write
Discover and register an OAuth provider (POST /v1/fleet/auth-providers/discover).
- Lua path
app.integrations.langsmith.post_v1_fleet_auth_providers_discover- Full name
langsmith.langsmith_post_v1_fleet_auth_providers_discover
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_auth_providers_provider_id Read
Get an OAuth provider (GET /v1/fleet/auth-providers/{provider_id}).
- Lua path
app.integrations.langsmith.get_v1_fleet_auth_providers_provider_id- Full name
langsmith.langsmith_get_v1_fleet_auth_providers_provider_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_fleet_auth_providers_provider_id Write
Delete an OAuth provider (DELETE /v1/fleet/auth-providers/{provider_id}).
- Lua path
app.integrations.langsmith.delete_v1_fleet_auth_providers_provider_id- Full name
langsmith.langsmith_delete_v1_fleet_auth_providers_provider_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_fleet_auth_providers_provider_id Write
Update an OAuth provider (PATCH /v1/fleet/auth-providers/{provider_id}).
- Lua path
app.integrations.langsmith.patch_v1_fleet_auth_providers_provider_id- Full name
langsmith.langsmith_patch_v1_fleet_auth_providers_provider_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_auth_sessions Write
Start an authorization session (POST /v1/fleet/auth-sessions).
- Lua path
app.integrations.langsmith.post_v1_fleet_auth_sessions- Full name
langsmith.langsmith_post_v1_fleet_auth_sessions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_auth_sessions_session_id Read
Get an authorization session (GET /v1/fleet/auth-sessions/{session_id}).
- Lua path
app.integrations.langsmith.get_v1_fleet_auth_sessions_session_id- Full name
langsmith.langsmith_get_v1_fleet_auth_sessions_session_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_auth_tokens Read
List your connection tokens (GET /v1/fleet/auth-tokens).
- Lua path
app.integrations.langsmith.get_v1_fleet_auth_tokens- Full name
langsmith.langsmith_get_v1_fleet_auth_tokens
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_auth_tokens_revoke Write
Revoke connection tokens by filter (POST /v1/fleet/auth-tokens/revoke).
- Lua path
app.integrations.langsmith.post_v1_fleet_auth_tokens_revoke- Full name
langsmith.langsmith_post_v1_fleet_auth_tokens_revoke
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_fleet_auth_tokens_token_id Write
Revoke a connection token (DELETE /v1/fleet/auth-tokens/{token_id}).
- Lua path
app.integrations.langsmith.delete_v1_fleet_auth_tokens_token_id- Full name
langsmith.langsmith_delete_v1_fleet_auth_tokens_token_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_fleet_auth_tokens_token_id Write
Update a connection token (PATCH /v1/fleet/auth-tokens/{token_id}).
- Lua path
app.integrations.langsmith.patch_v1_fleet_auth_tokens_token_id- Full name
langsmith.langsmith_patch_v1_fleet_auth_tokens_token_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_integrations Read
List integrations (GET /v1/fleet/integrations).
- Lua path
app.integrations.langsmith.get_v1_fleet_integrations- Full name
langsmith.langsmith_get_v1_fleet_integrations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_integrations Write
Create a custom integration (POST /v1/fleet/integrations).
- Lua path
app.integrations.langsmith.post_v1_fleet_integrations- Full name
langsmith.langsmith_post_v1_fleet_integrations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_integrations_id Read
Get an integration (GET /v1/fleet/integrations/{id}).
- Lua path
app.integrations.langsmith.get_v1_fleet_integrations_id- Full name
langsmith.langsmith_get_v1_fleet_integrations_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_fleet_integrations_id Write
Delete a custom integration (DELETE /v1/fleet/integrations/{id}).
- Lua path
app.integrations.langsmith.delete_v1_fleet_integrations_id- Full name
langsmith.langsmith_delete_v1_fleet_integrations_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_fleet_integrations_id Write
Update a custom integration (PATCH /v1/fleet/integrations/{id}).
- Lua path
app.integrations.langsmith.patch_v1_fleet_integrations_id- Full name
langsmith.langsmith_patch_v1_fleet_integrations_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
put_v1_fleet_integrations_id_auth_methods Write
Replace integration auth methods (PUT /v1/fleet/integrations/{id}/auth-methods).
- Lua path
app.integrations.langsmith.put_v1_fleet_integrations_id_auth_methods- Full name
langsmith.langsmith_put_v1_fleet_integrations_id_auth_methods
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_mcp_servers Read
List MCP servers (GET /v1/fleet/mcp-servers).
- Lua path
app.integrations.langsmith.get_v1_fleet_mcp_servers- Full name
langsmith.langsmith_get_v1_fleet_mcp_servers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_mcp_servers Write
Create MCP server (POST /v1/fleet/mcp-servers).
- Lua path
app.integrations.langsmith.post_v1_fleet_mcp_servers- Full name
langsmith.langsmith_post_v1_fleet_mcp_servers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_mcp_servers_mcp_server_id Read
Get MCP server (GET /v1/fleet/mcp-servers/{mcp_server_id}).
- Lua path
app.integrations.langsmith.get_v1_fleet_mcp_servers_mcp_server_id- Full name
langsmith.langsmith_get_v1_fleet_mcp_servers_mcp_server_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_fleet_mcp_servers_mcp_server_id Write
Delete MCP server (DELETE /v1/fleet/mcp-servers/{mcp_server_id}).
- Lua path
app.integrations.langsmith.delete_v1_fleet_mcp_servers_mcp_server_id- Full name
langsmith.langsmith_delete_v1_fleet_mcp_servers_mcp_server_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_fleet_mcp_servers_mcp_server_id Write
Update MCP server (PATCH /v1/fleet/mcp-servers/{mcp_server_id}).
- Lua path
app.integrations.langsmith.patch_v1_fleet_mcp_servers_mcp_server_id- Full name
langsmith.langsmith_patch_v1_fleet_mcp_servers_mcp_server_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_mcp_servers_mcp_server_id_oauth_provider Write
Register per-user MCP OAuth provider (POST /v1/fleet/mcp-servers/{mcp_server_id}/oauth-provider).
- Lua path
app.integrations.langsmith.post_v1_fleet_mcp_servers_mcp_server_id_oauth_provider- Full name
langsmith.langsmith_post_v1_fleet_mcp_servers_mcp_server_id_oauth_provider
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_mcp_tools Read
List MCP tools (GET /v1/fleet/mcp/tools).
- Lua path
app.integrations.langsmith.get_v1_fleet_mcp_tools- Full name
langsmith.langsmith_get_v1_fleet_mcp_tools
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_skills Read
List skills (GET /v1/fleet/skills).
- Lua path
app.integrations.langsmith.get_v1_fleet_skills- Full name
langsmith.langsmith_get_v1_fleet_skills
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_skills Write
Create a skill (POST /v1/fleet/skills).
- Lua path
app.integrations.langsmith.post_v1_fleet_skills- Full name
langsmith.langsmith_post_v1_fleet_skills
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_skills_skillid Read
Get a skill (GET /v1/fleet/skills/{skillID}).
- Lua path
app.integrations.langsmith.get_v1_fleet_skills_skillid- Full name
langsmith.langsmith_get_v1_fleet_skills_skillid
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
put_v1_fleet_skills_skillid Write
Replace a skill (PUT /v1/fleet/skills/{skillID}).
- Lua path
app.integrations.langsmith.put_v1_fleet_skills_skillid- Full name
langsmith.langsmith_put_v1_fleet_skills_skillid
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_fleet_skills_skillid Write
Delete a skill (DELETE /v1/fleet/skills/{skillID}).
- Lua path
app.integrations.langsmith.delete_v1_fleet_skills_skillid- Full name
langsmith.langsmith_delete_v1_fleet_skills_skillid
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_threads Write
Create thread (POST /v1/fleet/threads).
- Lua path
app.integrations.langsmith.post_v1_fleet_threads- Full name
langsmith.langsmith_post_v1_fleet_threads
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_fleet_threads_threadid Read
Get thread (GET /v1/fleet/threads/{threadID}).
- Lua path
app.integrations.langsmith.get_v1_fleet_threads_threadid- Full name
langsmith.langsmith_get_v1_fleet_threads_threadid
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_threads_threadid_resolve_interrupt Write
Resolve an interrupted thread (POST /v1/fleet/threads/{threadID}/resolve-interrupt).
- Lua path
app.integrations.langsmith.post_v1_fleet_threads_threadid_resolve_interrupt- Full name
langsmith.langsmith_post_v1_fleet_threads_threadid_resolve_interrupt
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_fleet_threads_threadid_runs Write
Create thread run (POST /v1/fleet/threads/{threadID}/runs).
- Lua path
app.integrations.langsmith.post_v1_fleet_threads_threadid_runs- Full name
langsmith.langsmith_post_v1_fleet_threads_threadid_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_alerts_session_id Write
Create an alert rule (POST /v1/platform/alerts/{session_id}).
- Lua path
app.integrations.langsmith.post_v1_platform_alerts_session_id- Full name
langsmith.langsmith_post_v1_platform_alerts_session_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_alerts_session_id_test Write
Test an alert action to determine if configuration is valid (POST /v1/platform/alerts/{session_id}/test).
- Lua path
app.integrations.langsmith.post_v1_platform_alerts_session_id_test- Full name
langsmith.langsmith_post_v1_platform_alerts_session_id_test
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_alerts_session_id_alert_rule_id Read
Get an alert rule (GET /v1/platform/alerts/{session_id}/{alert_rule_id}).
- Lua path
app.integrations.langsmith.get_v1_platform_alerts_session_id_alert_rule_id- Full name
langsmith.langsmith_get_v1_platform_alerts_session_id_alert_rule_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_alerts_session_id_alert_rule_id Write
Delete an alert rule (DELETE /v1/platform/alerts/{session_id}/{alert_rule_id}).
- Lua path
app.integrations.langsmith.delete_v1_platform_alerts_session_id_alert_rule_id- Full name
langsmith.langsmith_delete_v1_platform_alerts_session_id_alert_rule_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_platform_alerts_session_id_alert_rule_id Write
Update an alert rule (PATCH /v1/platform/alerts/{session_id}/{alert_rule_id}).
- Lua path
app.integrations.langsmith.patch_v1_platform_alerts_session_id_alert_rule_id- Full name
langsmith.langsmith_patch_v1_platform_alerts_session_id_alert_rule_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_annotation_queues_queue_id_reviewers Write
Add a reviewer to an annotation queue (POST /v1/platform/annotation-queues/{queue_id}/reviewers).
- Lua path
app.integrations.langsmith.post_v1_platform_annotation_queues_queue_id_reviewers- Full name
langsmith.langsmith_post_v1_platform_annotation_queues_queue_id_reviewers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_annotation_queues_queue_id_reviewers_identity_id Write
Remove a reviewer from an annotation queue (DELETE /v1/platform/annotation-queues/{queue_id}/reviewers/{identity_id}).
- Lua path
app.integrations.langsmith.delete_v1_platform_annotation_queues_queue_id_reviewers_identity_id- Full name
langsmith.langsmith_delete_v1_platform_annotation_queues_queue_id_reviewers_identity_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_datasets_examples Write
Hard Delete Examples (POST /v1/platform/datasets/examples/delete).
- Lua path
app.integrations.langsmith.post_v1_platform_datasets_examples- Full name
langsmith.langsmith_post_v1_platform_datasets_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_datasets_dataset_id_examples Write
Upload Examples (POST /v1/platform/datasets/{dataset_id}/examples).
- Lua path
app.integrations.langsmith.post_v1_platform_datasets_dataset_id_examples- Full name
langsmith.langsmith_post_v1_platform_datasets_dataset_id_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_platform_datasets_dataset_id_examples Write
Update Examples (PATCH /v1/platform/datasets/{dataset_id}/examples).
- Lua path
app.integrations.langsmith.patch_v1_platform_datasets_dataset_id_examples- Full name
langsmith.langsmith_patch_v1_platform_datasets_dataset_id_examples
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_evaluators Read
List evaluators (GET /v1/platform/evaluators).
- Lua path
app.integrations.langsmith.get_v1_platform_evaluators- Full name
langsmith.langsmith_get_v1_platform_evaluators
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_evaluators Write
Create evaluator (POST /v1/platform/evaluators).
- Lua path
app.integrations.langsmith.post_v1_platform_evaluators- Full name
langsmith.langsmith_post_v1_platform_evaluators
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_evaluators Write
Bulk delete evaluators (DELETE /v1/platform/evaluators).
- Lua path
app.integrations.langsmith.delete_v1_platform_evaluators- Full name
langsmith.langsmith_delete_v1_platform_evaluators
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_evaluators_evaluator_id Read
Get evaluator (GET /v1/platform/evaluators/{evaluator_id}).
- Lua path
app.integrations.langsmith.get_v1_platform_evaluators_evaluator_id- Full name
langsmith.langsmith_get_v1_platform_evaluators_evaluator_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_evaluators_evaluator_id Write
Delete evaluator (DELETE /v1/platform/evaluators/{evaluator_id}).
- Lua path
app.integrations.langsmith.delete_v1_platform_evaluators_evaluator_id- Full name
langsmith.langsmith_delete_v1_platform_evaluators_evaluator_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_platform_evaluators_evaluator_id Write
Update evaluator (PATCH /v1/platform/evaluators/{evaluator_id}).
- Lua path
app.integrations.langsmith.patch_v1_platform_evaluators_evaluator_id- Full name
langsmith.langsmith_patch_v1_platform_evaluators_evaluator_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_features Read
List feature configurations (GET /v1/platform/features).
- Lua path
app.integrations.langsmith.get_v1_platform_features- Full name
langsmith.langsmith_get_v1_platform_features
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
put_v1_platform_features_feature_default_model Write
Set default model for a feature (PUT /v1/platform/features/{feature}/default-model).
- Lua path
app.integrations.langsmith.put_v1_platform_features_feature_default_model- Full name
langsmith.langsmith_put_v1_platform_features_feature_default_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_features_feature_default_model Write
Delete default model for a feature (DELETE /v1/platform/features/{feature}/default-model).
- Lua path
app.integrations.langsmith.delete_v1_platform_features_feature_default_model- Full name
langsmith.langsmith_delete_v1_platform_features_feature_default_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
put_v1_platform_features_feature_disabled_models Write
Disable a model for a feature (PUT /v1/platform/features/{feature}/disabled-models).
- Lua path
app.integrations.langsmith.put_v1_platform_features_feature_disabled_models- Full name
langsmith.langsmith_put_v1_platform_features_feature_disabled_models
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_features_feature_disabled_models_model Write
Re-enable a disabled model for a feature (DELETE /v1/platform/features/{feature}/disabled-models/{model}).
- Lua path
app.integrations.langsmith.delete_v1_platform_features_feature_disabled_models_model- Full name
langsmith.langsmith_delete_v1_platform_features_feature_disabled_models_model
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_fleet_webhooks_webhook_id_run Write
Run a fleet webhook (POST /v1/platform/fleet-webhooks/{webhook_id}/run).
- Lua path
app.integrations.langsmith.post_v1_platform_fleet_webhooks_webhook_id_run- Full name
langsmith.langsmith_post_v1_platform_fleet_webhooks_webhook_id_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_fleet_mcp_servers Read
List MCP servers (GET /v1/platform/fleet/mcp-servers).
- Lua path
app.integrations.langsmith.get_v1_platform_fleet_mcp_servers- Full name
langsmith.langsmith_get_v1_platform_fleet_mcp_servers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_fleet_mcp_servers Write
Create MCP server (POST /v1/platform/fleet/mcp-servers).
- Lua path
app.integrations.langsmith.post_v1_platform_fleet_mcp_servers- Full name
langsmith.langsmith_post_v1_platform_fleet_mcp_servers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_fleet_mcp_servers_mcp_server_id Read
Get MCP server (GET /v1/platform/fleet/mcp-servers/{mcp_server_id}).
- Lua path
app.integrations.langsmith.get_v1_platform_fleet_mcp_servers_mcp_server_id- Full name
langsmith.langsmith_get_v1_platform_fleet_mcp_servers_mcp_server_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_fleet_mcp_servers_mcp_server_id Write
Delete MCP server (DELETE /v1/platform/fleet/mcp-servers/{mcp_server_id}).
- Lua path
app.integrations.langsmith.delete_v1_platform_fleet_mcp_servers_mcp_server_id- Full name
langsmith.langsmith_delete_v1_platform_fleet_mcp_servers_mcp_server_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_platform_fleet_mcp_servers_mcp_server_id Write
Update MCP server (PATCH /v1/platform/fleet/mcp-servers/{mcp_server_id}).
- Lua path
app.integrations.langsmith.patch_v1_platform_fleet_mcp_servers_mcp_server_id- Full name
langsmith.langsmith_patch_v1_platform_fleet_mcp_servers_mcp_server_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_fleet_mcp_servers_mcp_server_id_oauth_provider Write
Register per-user MCP OAuth provider (POST /v1/platform/fleet/mcp-servers/{mcp_server_id}/oauth-provider).
- Lua path
app.integrations.langsmith.post_v1_platform_fleet_mcp_servers_mcp_server_id_oauth_provider- Full name
langsmith.langsmith_post_v1_platform_fleet_mcp_servers_mcp_server_id_oauth_provider
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_fleet_providers_github_app_auth Write
Get GitHub OAuth authorization link (POST /v1/platform/fleet/providers/github-app/auth).
- Lua path
app.integrations.langsmith.post_v1_platform_fleet_providers_github_app_auth- Full name
langsmith.langsmith_post_v1_platform_fleet_providers_github_app_auth
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_fleet_providers_github_app_connection Read
Get GitHub user connection status (GET /v1/platform/fleet/providers/github-app/connection).
- Lua path
app.integrations.langsmith.get_v1_platform_fleet_providers_github_app_connection- Full name
langsmith.langsmith_get_v1_platform_fleet_providers_github_app_connection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_fleet_providers_github_app_connection Write
Delete GitHub user connection (DELETE /v1/platform/fleet/providers/github-app/connection).
- Lua path
app.integrations.langsmith.delete_v1_platform_fleet_providers_github_app_connection- Full name
langsmith.langsmith_delete_v1_platform_fleet_providers_github_app_connection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_platform_fleet_providers_github_app_connection Write
Update GitHub user connection (PATCH /v1/platform/fleet/providers/github-app/connection).
- Lua path
app.integrations.langsmith.patch_v1_platform_fleet_providers_github_app_connection- Full name
langsmith.langsmith_patch_v1_platform_fleet_providers_github_app_connection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_fleet_providers_github_app_install Write
Get GitHub App install link (POST /v1/platform/fleet/providers/github-app/install).
- Lua path
app.integrations.langsmith.post_v1_platform_fleet_providers_github_app_install- Full name
langsmith.langsmith_post_v1_platform_fleet_providers_github_app_install
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_fleet_providers_github_app_installations Read
List GitHub App installations (GET /v1/platform/fleet/providers/github-app/installations).
- Lua path
app.integrations.langsmith.get_v1_platform_fleet_providers_github_app_installations- Full name
langsmith.langsmith_get_v1_platform_fleet_providers_github_app_installations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_fleet_providers_github_app_installations_refresh Write
Refresh GitHub App installations (POST /v1/platform/fleet/providers/github-app/installations/refresh).
- Lua path
app.integrations.langsmith.post_v1_platform_fleet_providers_github_app_installations_refresh- Full name
langsmith.langsmith_post_v1_platform_fleet_providers_github_app_installations_refresh
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_fleet_providers_github_app_installations_id Write
Delete a GitHub App installation (DELETE /v1/platform/fleet/providers/github-app/installations/{id}).
- Lua path
app.integrations.langsmith.delete_v1_platform_fleet_providers_github_app_installations_id- Full name
langsmith.langsmith_delete_v1_platform_fleet_providers_github_app_installations_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_fleet_providers_github_app_installations_id_repos Read
List repositories for a GitHub App installation (GET /v1/platform/fleet/providers/github-app/installations/{id}/repos).
- Lua path
app.integrations.langsmith.get_v1_platform_fleet_providers_github_app_installations_id_repos- Full name
langsmith.langsmith_get_v1_platform_fleet_providers_github_app_installations_id_repos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_fleet_providers_github_app_tokens Write
Request a GitHub access token (POST /v1/platform/fleet/providers/github-app/tokens).
- Lua path
app.integrations.langsmith.post_v1_platform_fleet_providers_github_app_tokens- Full name
langsmith.langsmith_post_v1_platform_fleet_providers_github_app_tokens
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_fleet_providers_github_app_webhooks Write
Handle GitHub App webhook events (POST /v1/platform/fleet/providers/github-app/webhooks).
- Lua path
app.integrations.langsmith.post_v1_platform_fleet_providers_github_app_webhooks- Full name
langsmith.langsmith_post_v1_platform_fleet_providers_github_app_webhooks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_fleet_usage_agents Read
List fleet agents with usage (GET /v1/platform/fleet/usage/agents).
- Lua path
app.integrations.langsmith.get_v1_platform_fleet_usage_agents- Full name
langsmith.langsmith_get_v1_platform_fleet_usage_agents
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_fleet_usage_models Read
List fleet models with usage (GET /v1/platform/fleet/usage/models).
- Lua path
app.integrations.langsmith.get_v1_platform_fleet_usage_models- Full name
langsmith.langsmith_get_v1_platform_fleet_usage_models
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_fleet_usage_tools Read
List fleet tools with usage (GET /v1/platform/fleet/usage/tools).
- Lua path
app.integrations.langsmith.get_v1_platform_fleet_usage_tools- Full name
langsmith.langsmith_get_v1_platform_fleet_usage_tools
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_fleet_usage_users Read
List fleet users with usage (GET /v1/platform/fleet/usage/users).
- Lua path
app.integrations.langsmith.get_v1_platform_fleet_usage_users- Full name
langsmith.langsmith_get_v1_platform_fleet_usage_users
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_hub_repos_owner_repo_directories Read
Get directory contents (GET /v1/platform/hub/repos/{owner}/{repo}/directories).
- Lua path
app.integrations.langsmith.get_v1_platform_hub_repos_owner_repo_directories- Full name
langsmith.langsmith_get_v1_platform_hub_repos_owner_repo_directories
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_hub_repos_owner_repo_directories Write
Delete directory repository (DELETE /v1/platform/hub/repos/{owner}/{repo}/directories).
- Lua path
app.integrations.langsmith.delete_v1_platform_hub_repos_owner_repo_directories- Full name
langsmith.langsmith_delete_v1_platform_hub_repos_owner_repo_directories
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_hub_repos_owner_repo_directories_commits Write
Create directory commit (POST /v1/platform/hub/repos/{owner}/{repo}/directories/commits).
- Lua path
app.integrations.langsmith.post_v1_platform_hub_repos_owner_repo_directories_commits- Full name
langsmith.langsmith_post_v1_platform_hub_repos_owner_repo_directories_commits
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_mcp_vendors Read
List MCP vendors (GET /v1/platform/mcp-vendors).
- Lua path
app.integrations.langsmith.get_v1_platform_mcp_vendors- Full name
langsmith.langsmith_get_v1_platform_mcp_vendors
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_mcp_vendors_vendor_slug Read
Get MCP vendor (GET /v1/platform/mcp-vendors/{vendor_slug}).
- Lua path
app.integrations.langsmith.get_v1_platform_mcp_vendors_vendor_slug- Full name
langsmith.langsmith_get_v1_platform_mcp_vendors_vendor_slug
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_mcp_vendors_vendor_slug_account Read
Get vendor account (GET /v1/platform/mcp-vendors/{vendor_slug}/account).
- Lua path
app.integrations.langsmith.get_v1_platform_mcp_vendors_vendor_slug_account- Full name
langsmith.langsmith_get_v1_platform_mcp_vendors_vendor_slug_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_mcp_vendors_vendor_slug_mcp_servers Read
List MCP servers for a vendor (GET /v1/platform/mcp-vendors/{vendor_slug}/mcp-servers).
- Lua path
app.integrations.langsmith.get_v1_platform_mcp_vendors_vendor_slug_mcp_servers- Full name
langsmith.langsmith_get_v1_platform_mcp_vendors_vendor_slug_mcp_servers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_mcp_vendors_vendor_slug_settings Read
Get vendor settings (GET /v1/platform/mcp-vendors/{vendor_slug}/settings).
- Lua path
app.integrations.langsmith.get_v1_platform_mcp_vendors_vendor_slug_settings- Full name
langsmith.langsmith_get_v1_platform_mcp_vendors_vendor_slug_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
put_v1_platform_mcp_vendors_vendor_slug_settings Write
Replace vendor settings (PUT /v1/platform/mcp-vendors/{vendor_slug}/settings).
- Lua path
app.integrations.langsmith.put_v1_platform_mcp_vendors_vendor_slug_settings- Full name
langsmith.langsmith_put_v1_platform_mcp_vendors_vendor_slug_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_mcp_vendors_vendor_slug_settings Write
Create vendor settings (POST /v1/platform/mcp-vendors/{vendor_slug}/settings).
- Lua path
app.integrations.langsmith.post_v1_platform_mcp_vendors_vendor_slug_settings- Full name
langsmith.langsmith_post_v1_platform_mcp_vendors_vendor_slug_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_mcp_vendors_vendor_slug_settings Write
Delete vendor settings (DELETE /v1/platform/mcp-vendors/{vendor_slug}/settings).
- Lua path
app.integrations.langsmith.delete_v1_platform_mcp_vendors_vendor_slug_settings- Full name
langsmith.langsmith_delete_v1_platform_mcp_vendors_vendor_slug_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_mcp_vendors_vendor_slug_tools Read
List tools for a vendor (GET /v1/platform/mcp-vendors/{vendor_slug}/tools).
- Lua path
app.integrations.langsmith.get_v1_platform_mcp_vendors_vendor_slug_tools- Full name
langsmith.langsmith_get_v1_platform_mcp_vendors_vendor_slug_tools
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_nps_response Write
Submit an NPS response (POST /v1/platform/nps/response).
- Lua path
app.integrations.langsmith.post_v1_platform_nps_response- Full name
langsmith.langsmith_post_v1_platform_nps_response
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_ops_backfills_restart Write
Restart a backfill job (POST /v1/platform/ops/backfills/restart).
- Lua path
app.integrations.langsmith.post_v1_platform_ops_backfills_restart- Full name
langsmith.langsmith_post_v1_platform_ops_backfills_restart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_orgs_current_access_policies Read
List access policies (GET /v1/platform/orgs/current/access-policies).
- Lua path
app.integrations.langsmith.get_v1_platform_orgs_current_access_policies- Full name
langsmith.langsmith_get_v1_platform_orgs_current_access_policies
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_orgs_current_access_policies Write
Create an access policy (POST /v1/platform/orgs/current/access-policies).
- Lua path
app.integrations.langsmith.post_v1_platform_orgs_current_access_policies- Full name
langsmith.langsmith_post_v1_platform_orgs_current_access_policies
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_orgs_current_access_policies_roles_role_id_access_policies Write
Attach access policies to a role (POST /v1/platform/orgs/current/access-policies/roles/{role_id}/access-policies).
- Lua path
app.integrations.langsmith.post_v1_platform_orgs_current_access_policies_roles_role_id_access_policies- Full name
langsmith.langsmith_post_v1_platform_orgs_current_access_policies_roles_role_id_access_policies
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_orgs_current_access_policies_access_policy_id Read
Get an access policy (GET /v1/platform/orgs/current/access-policies/{access_policy_id}).
- Lua path
app.integrations.langsmith.get_v1_platform_orgs_current_access_policies_access_policy_id- Full name
langsmith.langsmith_get_v1_platform_orgs_current_access_policies_access_policy_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_orgs_current_access_policies_access_policy_id Write
Delete an access policy (DELETE /v1/platform/orgs/current/access-policies/{access_policy_id}).
- Lua path
app.integrations.langsmith.delete_v1_platform_orgs_current_access_policies_access_policy_id- Full name
langsmith.langsmith_delete_v1_platform_orgs_current_access_policies_access_policy_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_orgs_current_data_planes Read
List data planes for the current organization (GET /v1/platform/orgs/current/data-planes).
- Lua path
app.integrations.langsmith.get_v1_platform_orgs_current_data_planes- Full name
langsmith.langsmith_get_v1_platform_orgs_current_data_planes
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_orgs_current_info Read
Get current organization info (GET /v1/platform/orgs/current/info).
- Lua path
app.integrations.langsmith.get_v1_platform_orgs_current_info- Full name
langsmith.langsmith_get_v1_platform_orgs_current_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_orgs_current_members Read
List org members with workspace roles (GET /v1/platform/orgs/current/members).
- Lua path
app.integrations.langsmith.get_v1_platform_orgs_current_members- Full name
langsmith.langsmith_get_v1_platform_orgs_current_members
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_orgs_current_scim_tokens Read
List SCIM tokens (GET /v1/platform/orgs/current/scim/tokens).
- Lua path
app.integrations.langsmith.get_v1_platform_orgs_current_scim_tokens- Full name
langsmith.langsmith_get_v1_platform_orgs_current_scim_tokens
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_orgs_current_scim_tokens Write
Create a SCIM token (POST /v1/platform/orgs/current/scim/tokens).
- Lua path
app.integrations.langsmith.post_v1_platform_orgs_current_scim_tokens- Full name
langsmith.langsmith_post_v1_platform_orgs_current_scim_tokens
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_orgs_current_scim_tokens_scim_token_id Read
Get a SCIM token (GET /v1/platform/orgs/current/scim/tokens/{scim_token_id}).
- Lua path
app.integrations.langsmith.get_v1_platform_orgs_current_scim_tokens_scim_token_id- Full name
langsmith.langsmith_get_v1_platform_orgs_current_scim_tokens_scim_token_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_orgs_current_scim_tokens_scim_token_id Write
Delete a SCIM token (DELETE /v1/platform/orgs/current/scim/tokens/{scim_token_id}).
- Lua path
app.integrations.langsmith.delete_v1_platform_orgs_current_scim_tokens_scim_token_id- Full name
langsmith.langsmith_delete_v1_platform_orgs_current_scim_tokens_scim_token_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_platform_orgs_current_scim_tokens_scim_token_id Write
Update a SCIM token (PATCH /v1/platform/orgs/current/scim/tokens/{scim_token_id}).
- Lua path
app.integrations.langsmith.patch_v1_platform_orgs_current_scim_tokens_scim_token_id- Full name
langsmith.langsmith_patch_v1_platform_orgs_current_scim_tokens_scim_token_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_sessions_sessionid_agent_versions Read
List agent versions for a project (GET /v1/platform/sessions/{sessionID}/agent-versions).
- Lua path
app.integrations.langsmith.get_v1_platform_sessions_sessionid_agent_versions- Full name
langsmith.langsmith_get_v1_platform_sessions_sessionid_agent_versions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_tools Read
List tools (GET /v1/platform/tools).
- Lua path
app.integrations.langsmith.get_v1_platform_tools- Full name
langsmith.langsmith_get_v1_platform_tools
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v1_platform_tools Write
Create a tool (POST /v1/platform/tools).
- Lua path
app.integrations.langsmith.post_v1_platform_tools- Full name
langsmith.langsmith_post_v1_platform_tools
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_tools_id_id Read
Get a tool by ID (GET /v1/platform/tools/id/{id}).
- Lua path
app.integrations.langsmith.get_v1_platform_tools_id_id- Full name
langsmith.langsmith_get_v1_platform_tools_id_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_tools_id_id Write
Delete a tool by ID (DELETE /v1/platform/tools/id/{id}).
- Lua path
app.integrations.langsmith.delete_v1_platform_tools_id_id- Full name
langsmith.langsmith_delete_v1_platform_tools_id_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_platform_tools_id_id Write
Update a tool by ID (PATCH /v1/platform/tools/id/{id}).
- Lua path
app.integrations.langsmith.patch_v1_platform_tools_id_id- Full name
langsmith.langsmith_patch_v1_platform_tools_id_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v1_platform_tools_handle Read
Get a tool by handle (GET /v1/platform/tools/{handle}).
- Lua path
app.integrations.langsmith.get_v1_platform_tools_handle- Full name
langsmith.langsmith_get_v1_platform_tools_handle
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v1_platform_tools_handle Write
Delete a tool by handle (DELETE /v1/platform/tools/{handle}).
- Lua path
app.integrations.langsmith.delete_v1_platform_tools_handle- Full name
langsmith.langsmith_delete_v1_platform_tools_handle
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v1_platform_tools_handle Write
Update a tool by handle (PATCH /v1/platform/tools/{handle}).
- Lua path
app.integrations.langsmith.patch_v1_platform_tools_handle- Full name
langsmith.langsmith_patch_v1_platform_tools_handle
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v2_runs_query Write
Query runs (POST /v2/runs/query).
- Lua path
app.integrations.langsmith.post_v2_runs_query- Full name
langsmith.langsmith_post_v2_runs_query
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v2_runs_run_id Read
Get a single run (GET /v2/runs/{run_id}).
- Lua path
app.integrations.langsmith.get_v2_runs_run_id- Full name
langsmith.langsmith_get_v2_runs_run_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v2_sandboxes_boxes Read
List sandbox claims (GET /v2/sandboxes/boxes).
- Lua path
app.integrations.langsmith.get_v2_sandboxes_boxes- Full name
langsmith.langsmith_get_v2_sandboxes_boxes
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v2_sandboxes_boxes Write
Create a sandbox claim (POST /v2/sandboxes/boxes).
- Lua path
app.integrations.langsmith.post_v2_sandboxes_boxes- Full name
langsmith.langsmith_post_v2_sandboxes_boxes
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v2_sandboxes_boxes_batch Write
Batch delete sandbox claims (POST /v2/sandboxes/boxes/batch-delete).
- Lua path
app.integrations.langsmith.post_v2_sandboxes_boxes_batch- Full name
langsmith.langsmith_post_v2_sandboxes_boxes_batch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v2_sandboxes_boxes_name Read
Get a sandbox claim (GET /v2/sandboxes/boxes/{name}).
- Lua path
app.integrations.langsmith.get_v2_sandboxes_boxes_name- Full name
langsmith.langsmith_get_v2_sandboxes_boxes_name
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v2_sandboxes_boxes_name Write
Delete a sandbox claim (DELETE /v2/sandboxes/boxes/{name}).
- Lua path
app.integrations.langsmith.delete_v2_sandboxes_boxes_name- Full name
langsmith.langsmith_delete_v2_sandboxes_boxes_name
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
patch_v2_sandboxes_boxes_name Write
Update a sandbox claim (PATCH /v2/sandboxes/boxes/{name}).
- Lua path
app.integrations.langsmith.patch_v2_sandboxes_boxes_name- Full name
langsmith.langsmith_patch_v2_sandboxes_boxes_name
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v2_sandboxes_boxes_name_service_url Write
Generate a service access token (POST /v2/sandboxes/boxes/{name}/service-url).
- Lua path
app.integrations.langsmith.post_v2_sandboxes_boxes_name_service_url- Full name
langsmith.langsmith_post_v2_sandboxes_boxes_name_service_url
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v2_sandboxes_boxes_name_snapshot Write
Capture a snapshot from a sandbox (POST /v2/sandboxes/boxes/{name}/snapshot).
- Lua path
app.integrations.langsmith.post_v2_sandboxes_boxes_name_snapshot- Full name
langsmith.langsmith_post_v2_sandboxes_boxes_name_snapshot
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v2_sandboxes_boxes_name_start Write
Start a sandbox (POST /v2/sandboxes/boxes/{name}/start).
- Lua path
app.integrations.langsmith.post_v2_sandboxes_boxes_name_start- Full name
langsmith.langsmith_post_v2_sandboxes_boxes_name_start
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v2_sandboxes_boxes_name_status Read
Get sandbox claim status (GET /v2/sandboxes/boxes/{name}/status).
- Lua path
app.integrations.langsmith.get_v2_sandboxes_boxes_name_status- Full name
langsmith.langsmith_get_v2_sandboxes_boxes_name_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v2_sandboxes_boxes_name_stop Write
Stop a sandbox (POST /v2/sandboxes/boxes/{name}/stop).
- Lua path
app.integrations.langsmith.post_v2_sandboxes_boxes_name_stop- Full name
langsmith.langsmith_post_v2_sandboxes_boxes_name_stop
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v2_sandboxes_internal_start_name Write
Internal: start a stopped sandbox (service-to-service) (POST /v2/sandboxes/internal/start/{name}).
- Lua path
app.integrations.langsmith.post_v2_sandboxes_internal_start_name- Full name
langsmith.langsmith_post_v2_sandboxes_internal_start_name
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v2_sandboxes_snapshots Read
List snapshots (GET /v2/sandboxes/snapshots).
- Lua path
app.integrations.langsmith.get_v2_sandboxes_snapshots- Full name
langsmith.langsmith_get_v2_sandboxes_snapshots
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v2_sandboxes_snapshots Write
Create a snapshot (POST /v2/sandboxes/snapshots).
- Lua path
app.integrations.langsmith.post_v2_sandboxes_snapshots- Full name
langsmith.langsmith_post_v2_sandboxes_snapshots
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v2_sandboxes_snapshots_snapshot_id Read
Get a snapshot (GET /v2/sandboxes/snapshots/{snapshot_id}).
- Lua path
app.integrations.langsmith.get_v2_sandboxes_snapshots_snapshot_id- Full name
langsmith.langsmith_get_v2_sandboxes_snapshots_snapshot_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_v2_sandboxes_snapshots_snapshot_id Write
Delete a snapshot (DELETE /v2/sandboxes/snapshots/{snapshot_id}).
- Lua path
app.integrations.langsmith.delete_v2_sandboxes_snapshots_snapshot_id- Full name
langsmith.langsmith_delete_v2_sandboxes_snapshots_snapshot_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v2_sandboxes_usage Read
Get sandbox resource usage (GET /v2/sandboxes/usage).
- Lua path
app.integrations.langsmith.get_v2_sandboxes_usage- Full name
langsmith.langsmith_get_v2_sandboxes_usage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
post_v2_threads_query Write
Query Threads (POST /v2/threads/query).
- Lua path
app.integrations.langsmith.post_v2_threads_query- Full name
langsmith.langsmith_post_v2_threads_query
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v2_threads_thread_id_traces Read
Query Thread Traces (GET /v2/threads/{thread_id}/traces).
- Lua path
app.integrations.langsmith.get_v2_threads_thread_id_traces- Full name
langsmith.langsmith_get_v2_threads_thread_id_traces
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_v2_traces_trace_id_runs Read
List runs in a trace (GET /v2/traces/{trace_id}/runs).
- Lua path
app.integrations.langsmith.get_v2_traces_trace_id_runs- Full name
langsmith.langsmith_get_v2_traces_trace_id_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_workspaces_current_ttl_settings Read
Get workspace TTL settings (GET /workspaces/current/ttl-settings).
- Lua path
app.integrations.langsmith.get_workspaces_current_ttl_settings- Full name
langsmith.langsmith_get_workspaces_current_ttl_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
put_workspaces_current_ttl_settings Write
Update workspace TTL settings (PUT /workspaces/current/ttl-settings).
- Lua path
app.integrations.langsmith.put_workspaces_current_ttl_settings- Full name
langsmith.langsmith_put_workspaces_current_ttl_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||