chore: import upstream snapshot with attribution
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

This commit is contained in:
wehub-resource-sync
2026-07-13 13:20:55 +08:00
commit d25d482dc2
13754 changed files with 4996608 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
import { visionTool, visionToolV2 } from '@/tools/vision/tool'
export { visionTool, visionToolV2 }
+124
View File
@@ -0,0 +1,124 @@
import type { ToolConfig } from '@/tools/types'
import type { VisionParams, VisionResponse, VisionV2Params } from '@/tools/vision/types'
export const visionTool: ToolConfig<VisionParams, VisionResponse> = {
id: 'vision_tool',
name: 'Vision Tool',
description:
'Process and analyze images using advanced vision models. Capable of understanding image content, extracting text, identifying objects, and providing detailed visual descriptions.',
version: '1.0.0',
params: {
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'API key for the selected model provider',
},
imageUrl: {
type: 'string',
required: false,
visibility: 'user-only',
description: 'Publicly accessible image URL',
},
imageFile: {
type: 'file',
required: false,
visibility: 'user-only',
description: 'Image file to analyze',
},
model: {
type: 'string',
required: false,
visibility: 'user-only',
description: 'Vision model to use (gpt-4o, claude-3-opus-20240229, etc)',
},
prompt: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Custom prompt for image analysis',
},
},
request: {
method: 'POST',
url: '/api/tools/vision/analyze',
headers: () => ({
'Content-Type': 'application/json',
}),
body: (params) => {
return {
apiKey: params.apiKey,
imageUrl: params.imageUrl || null,
imageFile: params.imageFile || null,
model: params.model || 'gpt-5.2',
prompt: params.prompt || null,
}
},
},
transformResponse: async (response: Response) => {
const data = await response.json()
if (!data.success) {
throw new Error(data.error || 'Failed to analyze image')
}
return {
success: true,
output: data.output,
}
},
outputs: {
content: {
type: 'string',
description: 'The analyzed content and description of the image',
},
model: {
type: 'string',
description: 'The vision model that was used for analysis',
optional: true,
},
tokens: {
type: 'number',
description: 'Total tokens used for the analysis',
optional: true,
},
usage: {
type: 'object',
description: 'Detailed token usage breakdown',
optional: true,
properties: {
input_tokens: { type: 'number', description: 'Tokens used for input processing' },
output_tokens: { type: 'number', description: 'Tokens used for response generation' },
total_tokens: { type: 'number', description: 'Total tokens consumed' },
},
},
},
}
export const visionToolV2: ToolConfig<VisionV2Params, VisionResponse> = {
...visionTool,
id: 'vision_tool_v2',
name: 'Vision Tool',
params: {
apiKey: visionTool.params.apiKey,
imageFile: {
type: 'file',
required: true,
visibility: 'user-only',
description: 'Image file to analyze',
},
model: visionTool.params.model,
prompt: visionTool.params.prompt,
},
request: {
...visionTool.request,
body: (params: VisionV2Params) => ({
apiKey: params.apiKey,
imageFile: params.imageFile,
model: params.model || 'gpt-5.2',
prompt: params.prompt || null,
}),
},
}
+25
View File
@@ -0,0 +1,25 @@
import type { UserFile } from '@/executor/types'
import type { ToolResponse } from '@/tools/types'
export interface VisionParams {
apiKey: string
imageUrl?: string
imageFile?: UserFile
model?: string
prompt?: string
}
export interface VisionV2Params {
apiKey: string
imageFile: UserFile
model?: string
prompt?: string
}
export interface VisionResponse extends ToolResponse {
output: {
content: string
model?: string
tokens?: number
}
}