@ulpi/codemap 0.3.5 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5786,10 +5786,10 @@ function registerInit(program2) {
|
|
|
5786
5786
|
config.embedding.provider = provider;
|
|
5787
5787
|
if (provider === "ulpi") {
|
|
5788
5788
|
config.embedding.model = "code";
|
|
5789
|
-
config.embedding.dimensions =
|
|
5789
|
+
config.embedding.dimensions = 2560;
|
|
5790
5790
|
config.embedding.baseUrl = ULPI_API_BASE;
|
|
5791
5791
|
console.log();
|
|
5792
|
-
console.log(chalk3.dim('ULPI Cloud uses the "code" embedding model (
|
|
5792
|
+
console.log(chalk3.dim('ULPI Cloud uses the "code" embedding model (2560 dimensions).'));
|
|
5793
5793
|
console.log();
|
|
5794
5794
|
const hasAccount = await ask("Do you have a ULPI account? (y/n): ");
|
|
5795
5795
|
if (hasAccount.toLowerCase() === "y") {
|