Files
simstudioai--sim/apps/sim/tools/langsmith/create_feedback.ts
T
wehub-resource-sync d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

134 lines
3.8 KiB
TypeScript

import { generateId } from '@sim/utils/id'
import { filterUndefined } from '@sim/utils/object'
import type {
LangsmithCreateFeedbackParams,
LangsmithCreateFeedbackResponse,
} from '@/tools/langsmith/types'
import type { ToolConfig } from '@/tools/types'
export const langsmithCreateFeedbackTool: ToolConfig<
LangsmithCreateFeedbackParams,
LangsmithCreateFeedbackResponse
> = {
id: 'langsmith_create_feedback',
name: 'LangSmith Create Feedback',
description: 'Attach a score, correction, or comment to a LangSmith run.',
version: '1.0.0',
params: {
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'LangSmith API key',
},
runId: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'ID of the run to attach feedback to',
},
key: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Feedback metric name (e.g. "correctness", "user_score")',
},
score: {
type: 'number',
required: false,
visibility: 'user-or-llm',
description: 'Numeric score for the feedback metric',
},
value: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Categorical value for the feedback metric',
},
comment: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Free-text comment explaining the feedback',
},
correction: {
type: 'json',
required: false,
visibility: 'user-or-llm',
description: 'Corrected output for the run',
},
feedbackSourceType: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Origin of the feedback (api, app, or model)',
},
},
request: {
url: () => 'https://api.smith.langchain.com/feedback',
method: 'POST',
headers: (params) => ({
'X-Api-Key': params.apiKey,
'Content-Type': 'application/json',
}),
body: (params) => {
const payload: Record<string, unknown> = {
id: generateId(),
run_id: params.runId.trim(),
key: params.key,
score: params.score,
value: params.value,
comment: params.comment,
correction: params.correction,
feedback_source: params.feedbackSourceType
? { type: params.feedbackSourceType }
: undefined,
}
return filterUndefined(payload)
},
},
transformResponse: async (response) => {
if (!response.ok) {
const errorText = await response.text()
throw new Error(`LangSmith create feedback failed (${response.status}): ${errorText}`)
}
const data = (await response.json()) as Record<string, unknown>
return {
success: true,
output: {
id: data.id as string,
key: data.key as string,
runId: (data.run_id as string) ?? null,
score: (data.score as number) ?? null,
value: (data.value as string | number | boolean) ?? null,
comment: (data.comment as string) ?? null,
createdAt: (data.created_at as string) ?? null,
},
}
},
outputs: {
id: { type: 'string', description: 'Feedback ID' },
key: { type: 'string', description: 'Feedback metric name' },
runId: {
type: 'string',
description: 'ID of the run the feedback was attached to',
optional: true,
},
score: { type: 'number', description: 'Score recorded for the feedback', optional: true },
value: {
type: 'string',
description: 'Categorical value recorded for the feedback',
optional: true,
},
comment: { type: 'string', description: 'Comment recorded for the feedback', optional: true },
createdAt: {
type: 'string',
description: 'When the feedback was created (ISO)',
optional: true,
},
},
}