feat(coding): add model tools and device packages

This commit is contained in:
2026-09-02 18:35:26 +08:00
parent 841273b433
commit 664b8823a0
60 changed files with 3847 additions and 2068 deletions

View File

@@ -78,5 +78,9 @@ describe('Pi worker executable resolution', () => {
expect(development.serverPath).toBe(path.join(appPath, 'resources', 'pi-agent-server.mjs'));
expect(packaged.serverPath).toBe(path.join(resourcesPath, 'resources', 'pi-agent-server.mjs'));
expect(packaged.cliPath).toBe(path.join(resourcesPath, 'pi-runtime', 'dist', 'cli.js'));
expect(development.npmCliPath).toBe(path.join(appPath, 'node_modules', 'npm', 'bin', 'npm-cli.js'));
expect(packaged.npmCliPath).toBe(path.join(
resourcesPath, 'publish-runtime', 'bin', 'npm-cli.js',
));
});
});