Frontmatter
| id | 8927 |
| title | Cleanup: Remove unused set_component mapping in AI Client |
| state | Closed |
| labels | airefactoring |
| assignees | tobiu |
| createdAt | Jan 31, 2026, 5:46 PM |
| updatedAt | Jan 31, 2026, 5:51 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8927 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 31, 2026, 5:51 PM |
Cleanup: Remove unused set_component mapping in AI Client
tobiu assigned to @tobiu on Jan 31, 2026, 5:46 PM
tobiu changed title from Feat: Implement call_method tool for Neural Link to Cleanup: Remove unused set_component mapping in AI Client on Jan 31, 2026, 5:49 PM

tobiu
Jan 31, 2026, 5:51 PM
Input from Gemini 3 Pro:
✦ I have removed the unused
set_componentmapping fromsrc/ai/Client.mjs.This cleanup reduces confusion as
set_componentwas mapped toComponentServicebut not implemented there, whileset_instance_properties(mapped toInstanceService) covers the functionality.
tobiu closed this issue on Jan 31, 2026, 5:51 PM
We identified that
src/ai/Client.mjsmapsset_componenttoComponentService, butComponentServicelacks this method. This functionality is fully covered byInstanceService.setInstanceProperties.Goal: Remove the mapping for
set_componentinsrc/ai/Client.mjsto clean up the API surface area.Reference: src/ai/Client.mjs
me.serviceMap = { // ... set_component: component, // Remove this // ... }