-
Notifications
You must be signed in to change notification settings - Fork 3.4k
fix(ui) Live update resources in resource main view #3617
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,248 @@ | ||
| import type { MothershipResource, MothershipResourceType } from '@/lib/copilot/resource-types' | ||
|
|
||
| type ChatResource = MothershipResource | ||
| type ResourceType = MothershipResourceType | ||
|
|
||
| const RESOURCE_TOOL_NAMES = new Set([ | ||
| 'user_table', | ||
| 'workspace_file', | ||
| 'create_workflow', | ||
| 'edit_workflow', | ||
| 'function_execute', | ||
| 'knowledge_base', | ||
| 'knowledge', | ||
| ]) | ||
|
|
||
| export function isResourceToolName(toolName: string): boolean { | ||
| return RESOURCE_TOOL_NAMES.has(toolName) | ||
| } | ||
|
|
||
| function asRecord(value: unknown): Record<string, unknown> { | ||
| return value && typeof value === 'object' ? (value as Record<string, unknown>) : {} | ||
| } | ||
|
|
||
| function getOperation(params: Record<string, unknown> | undefined): string | undefined { | ||
| const args = asRecord(params?.args) | ||
| return (args.operation ?? params?.operation) as string | undefined | ||
| } | ||
|
|
||
| const READ_ONLY_TABLE_OPS = new Set(['get', 'get_schema', 'get_row', 'query_rows']) | ||
| const READ_ONLY_KB_OPS = new Set(['get', 'query', 'list_tags', 'get_tag_usage']) | ||
| const READ_ONLY_KNOWLEDGE_ACTIONS = new Set(['listed', 'queried']) | ||
|
|
||
| /** | ||
| * Extracts resource descriptors from a tool execution result. | ||
| * Returns one or more resources for tools that create/modify workspace entities. | ||
| * Read-only operations are excluded to avoid unnecessary cache invalidation. | ||
| */ | ||
| export function extractResourcesFromToolResult( | ||
| toolName: string, | ||
| params: Record<string, unknown> | undefined, | ||
| output: unknown | ||
| ): ChatResource[] { | ||
| if (!isResourceToolName(toolName)) return [] | ||
|
|
||
| const result = asRecord(output) | ||
| const data = asRecord(result.data) | ||
|
|
||
| switch (toolName) { | ||
| case 'user_table': { | ||
| if (READ_ONLY_TABLE_OPS.has(getOperation(params) ?? '')) return [] | ||
|
|
||
| if (result.tableId) { | ||
| return [ | ||
| { | ||
| type: 'table', | ||
| id: result.tableId as string, | ||
| title: (result.tableName as string) || 'Table', | ||
| }, | ||
| ] | ||
| } | ||
| if (result.fileId) { | ||
| return [ | ||
| { | ||
| type: 'file', | ||
| id: result.fileId as string, | ||
| title: (result.fileName as string) || 'File', | ||
| }, | ||
| ] | ||
| } | ||
| const table = asRecord(data.table) | ||
| if (table.id) { | ||
| return [{ type: 'table', id: table.id as string, title: (table.name as string) || 'Table' }] | ||
| } | ||
| const args = asRecord(params?.args) | ||
| const tableId = | ||
| (data.tableId as string) ?? (args.tableId as string) ?? (params?.tableId as string) | ||
| if (tableId) { | ||
| return [ | ||
| { type: 'table', id: tableId as string, title: (data.tableName as string) || 'Table' }, | ||
| ] | ||
| } | ||
| return [] | ||
| } | ||
|
|
||
| case 'workspace_file': { | ||
| const file = asRecord(data.file) | ||
| if (file.id) { | ||
| return [{ type: 'file', id: file.id as string, title: (file.name as string) || 'File' }] | ||
| } | ||
| const fileId = (data.fileId as string) ?? (data.id as string) | ||
| if (fileId) { | ||
| const fileName = (data.fileName as string) || (data.name as string) || 'File' | ||
| return [{ type: 'file', id: fileId, title: fileName }] | ||
| } | ||
| return [] | ||
| } | ||
|
|
||
| case 'function_execute': { | ||
| if (result.tableId) { | ||
| return [ | ||
| { | ||
| type: 'table', | ||
| id: result.tableId as string, | ||
| title: (result.tableName as string) || 'Table', | ||
| }, | ||
| ] | ||
| } | ||
| if (result.fileId) { | ||
| return [ | ||
| { | ||
| type: 'file', | ||
| id: result.fileId as string, | ||
| title: (result.fileName as string) || 'File', | ||
| }, | ||
| ] | ||
| } | ||
| return [] | ||
| } | ||
|
|
||
| case 'create_workflow': | ||
| case 'edit_workflow': { | ||
| const workflowId = | ||
| (result.workflowId as string) ?? | ||
| (data.workflowId as string) ?? | ||
| (params?.workflowId as string) | ||
| if (workflowId) { | ||
| const workflowName = | ||
| (result.workflowName as string) ?? | ||
| (data.workflowName as string) ?? | ||
| (params?.workflowName as string) ?? | ||
| 'Workflow' | ||
| return [{ type: 'workflow', id: workflowId, title: workflowName }] | ||
| } | ||
| return [] | ||
| } | ||
|
|
||
| case 'knowledge_base': { | ||
| if (READ_ONLY_KB_OPS.has(getOperation(params) ?? '')) return [] | ||
|
|
||
| const kbId = | ||
| (data.id as string) ?? | ||
| (result.knowledgeBaseId as string) ?? | ||
| (data.knowledgeBaseId as string) ?? | ||
| (params?.knowledgeBaseId as string) | ||
| if (kbId) { | ||
| const kbName = | ||
| (data.name as string) ?? (result.knowledgeBaseName as string) ?? 'Knowledge Base' | ||
| return [{ type: 'knowledgebase', id: kbId, title: kbName }] | ||
| } | ||
| return [] | ||
| } | ||
|
|
||
| case 'knowledge': { | ||
| const action = data.action as string | undefined | ||
| if (READ_ONLY_KNOWLEDGE_ACTIONS.has(action ?? '')) return [] | ||
|
|
||
| const kbArray = data.knowledge_bases as Array<Record<string, unknown>> | undefined | ||
| if (!Array.isArray(kbArray)) return [] | ||
| const resources: ChatResource[] = [] | ||
| for (const kb of kbArray) { | ||
| const id = kb.id as string | undefined | ||
| if (id) { | ||
| resources.push({ | ||
| type: 'knowledgebase', | ||
| id, | ||
| title: (kb.name as string) || 'Knowledge Base', | ||
| }) | ||
| } | ||
| } | ||
| return resources | ||
| } | ||
TheodoreSpeaks marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| default: | ||
| return [] | ||
| } | ||
| } | ||
|
|
||
| const DELETE_CAPABLE_TOOL_RESOURCE_TYPE: Record<string, ResourceType> = { | ||
| delete_workflow: 'workflow', | ||
| workspace_file: 'file', | ||
| user_table: 'table', | ||
| knowledge_base: 'knowledgebase', | ||
| } | ||
|
|
||
| export function hasDeleteCapability(toolName: string): boolean { | ||
| return toolName in DELETE_CAPABLE_TOOL_RESOURCE_TYPE | ||
| } | ||
|
|
||
| /** | ||
| * Extracts resource descriptors from a tool execution result when the tool | ||
| * performed a deletion. Returns one or more deleted resources for tools that | ||
| * destroy workspace entities. | ||
| */ | ||
| export function extractDeletedResourcesFromToolResult( | ||
| toolName: string, | ||
| params: Record<string, unknown> | undefined, | ||
| output: unknown | ||
| ): ChatResource[] { | ||
| const resourceType = DELETE_CAPABLE_TOOL_RESOURCE_TYPE[toolName] | ||
| if (!resourceType) return [] | ||
|
|
||
| const result = asRecord(output) | ||
| const data = asRecord(result.data) | ||
| const args = asRecord(params?.args) | ||
| const operation = (args.operation ?? params?.operation) as string | undefined | ||
|
|
||
| switch (toolName) { | ||
| case 'delete_workflow': { | ||
| const workflowId = (result.workflowId as string) ?? (params?.workflowId as string) | ||
| if (workflowId && result.deleted) { | ||
| return [ | ||
| { type: resourceType, id: workflowId, title: (result.name as string) || 'Workflow' }, | ||
| ] | ||
| } | ||
| return [] | ||
| } | ||
|
|
||
| case 'workspace_file': { | ||
| if (operation !== 'delete') return [] | ||
| const fileId = (data.id as string) ?? (args.fileId as string) | ||
| if (fileId) { | ||
| return [{ type: resourceType, id: fileId, title: (data.name as string) || 'File' }] | ||
| } | ||
| return [] | ||
| } | ||
|
|
||
| case 'user_table': { | ||
| if (operation !== 'delete') return [] | ||
| const tableId = (args.tableId as string) ?? (params?.tableId as string) | ||
| if (tableId) { | ||
| return [{ type: resourceType, id: tableId, title: 'Table' }] | ||
| } | ||
| return [] | ||
| } | ||
|
|
||
| case 'knowledge_base': { | ||
| if (operation !== 'delete') return [] | ||
| const kbId = (data.id as string) ?? (args.knowledgeBaseId as string) | ||
| if (kbId) { | ||
| return [{ type: resourceType, id: kbId, title: (data.name as string) || 'Knowledge Base' }] | ||
| } | ||
| return [] | ||
| } | ||
|
|
||
| default: | ||
| return [] | ||
| } | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.