chore: import upstream snapshot with attribution
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
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (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
+176
View File
@@ -0,0 +1,176 @@
import { createLogger } from '@sim/logger'
import type {
GoogleSlidesCreateResponse,
GoogleSlidesToolParams,
} from '@/tools/google_slides/types'
import type { ToolConfig } from '@/tools/types'
const logger = createLogger('GoogleSlidesCreateTool')
export const createTool: ToolConfig<GoogleSlidesToolParams, GoogleSlidesCreateResponse> = {
id: 'google_slides_create',
name: 'Create Google Slides Presentation',
description: 'Create a new Google Slides presentation',
version: '1.0',
oauth: {
required: true,
provider: 'google-drive',
},
params: {
accessToken: {
type: 'string',
required: true,
visibility: 'hidden',
description: 'The access token for the Google Slides API',
},
title: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'The title of the presentation to create',
},
content: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'The content to add to the first slide',
},
folderSelector: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Google Drive folder ID to create the presentation in (e.g., 1ABCxyz...)',
},
folderId: {
type: 'string',
required: false,
visibility: 'hidden',
description: 'The ID of the folder to create the presentation in (internal use)',
},
},
request: {
url: () => {
return 'https://www.googleapis.com/drive/v3/files?supportsAllDrives=true'
},
method: 'POST',
headers: (params) => {
// Validate access token
if (!params.accessToken) {
throw new Error('Access token is required')
}
return {
Authorization: `Bearer ${params.accessToken}`,
'Content-Type': 'application/json',
}
},
body: (params) => {
if (!params.title) {
throw new Error('Title is required')
}
const requestBody: any = {
name: params.title,
mimeType: 'application/vnd.google-apps.presentation',
}
// Add parent folder if specified (prefer folderSelector over folderId)
const folderId = params.folderSelector || params.folderId
if (folderId) {
requestBody.parents = [folderId]
}
return requestBody
},
},
postProcess: async (result, params, executeTool) => {
if (!result.success) {
return result
}
const presentationId = result.output.metadata.presentationId
if (params.content && presentationId) {
try {
const writeParams = {
accessToken: params.accessToken,
presentationId: presentationId,
content: params.content,
}
const writeResult = await executeTool('google_slides_write', writeParams)
if (!writeResult.success) {
logger.warn(
'Failed to add content to presentation, but presentation was created:',
writeResult.error
)
}
} catch (error) {
logger.warn('Error adding content to presentation:', { error })
// Don't fail the overall operation if adding content fails
}
}
return result
},
transformResponse: async (response: Response) => {
try {
// Get the response data
const responseText = await response.text()
const data = JSON.parse(responseText)
const presentationId = data.id
const title = data.name
const metadata = {
presentationId,
title: title || 'Untitled Presentation',
mimeType: 'application/vnd.google-apps.presentation',
url: `https://docs.google.com/presentation/d/${presentationId}/edit`,
}
return {
success: true,
output: {
metadata,
},
}
} catch (error) {
logger.error('Google Slides create - Error processing response:', {
error,
})
throw error
}
},
outputs: {
metadata: {
type: 'json',
description: 'Created presentation metadata including ID, title, and URL',
properties: {
presentationId: {
type: 'string',
description: 'The presentation ID',
},
title: {
type: 'string',
description: 'The presentation title',
},
mimeType: {
type: 'string',
description: 'The mime type of the presentation',
},
url: {
type: 'string',
description: 'URL to open the presentation',
},
},
},
},
}