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
110 lines
2.8 KiB
TypeScript
110 lines
2.8 KiB
TypeScript
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const s3HeadObjectTool: ToolConfig = {
|
|
id: 's3_head_object',
|
|
name: 'S3 Head Object',
|
|
description: 'Retrieve metadata for an S3 object without downloading its body',
|
|
version: '1.0.0',
|
|
|
|
params: {
|
|
accessKeyId: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'Your AWS Access Key ID',
|
|
},
|
|
secretAccessKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'Your AWS Secret Access Key',
|
|
},
|
|
region: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'AWS region (e.g., us-east-1)',
|
|
},
|
|
bucketName: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'S3 bucket name (e.g., my-bucket)',
|
|
},
|
|
objectKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Object key/path to inspect (e.g., folder/file.txt)',
|
|
},
|
|
versionId: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Specific object version ID to inspect (for versioned buckets)',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: '/api/tools/s3/head-object',
|
|
method: 'POST',
|
|
headers: () => ({
|
|
'Content-Type': 'application/json',
|
|
}),
|
|
body: (params) => ({
|
|
accessKeyId: params.accessKeyId,
|
|
secretAccessKey: params.secretAccessKey,
|
|
region: params.region,
|
|
bucketName: params.bucketName,
|
|
objectKey: params.objectKey,
|
|
versionId: params.versionId,
|
|
}),
|
|
},
|
|
|
|
transformResponse: async (response) => {
|
|
const data = await response.json()
|
|
|
|
if (!data.success) {
|
|
return {
|
|
success: false,
|
|
output: {
|
|
exists: false,
|
|
metadata: {
|
|
error: data.error || 'Failed to retrieve object metadata',
|
|
},
|
|
},
|
|
error: data.error,
|
|
}
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
exists: data.output.exists,
|
|
metadata: {
|
|
size: data.output.contentLength ?? null,
|
|
fileType: data.output.contentType ?? null,
|
|
etag: data.output.etag ?? null,
|
|
lastModified: data.output.lastModified ?? null,
|
|
versionId: data.output.versionId ?? null,
|
|
storageClass: data.output.storageClass ?? null,
|
|
serverSideEncryption: data.output.serverSideEncryption ?? null,
|
|
deleteMarker: data.output.deleteMarker ?? null,
|
|
userMetadata: data.output.metadata ?? {},
|
|
},
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
exists: {
|
|
type: 'boolean',
|
|
description: 'Whether the object exists and was reachable',
|
|
},
|
|
metadata: {
|
|
type: 'object',
|
|
description: 'Object metadata including size, content type, ETag, and last modified date',
|
|
},
|
|
},
|
|
}
|