@inkeep/agents-core 0.0.0-dev-20251006143824 → 0.0.0-dev-20251006152515
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.cjs +2 -3
- package/dist/index.js +2 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4466,10 +4466,9 @@ var getContextConfigCacheEntries = (db) => async (params) => {
|
|
|
4466
4466
|
value: entry.value
|
|
4467
4467
|
}));
|
|
4468
4468
|
};
|
|
4469
|
+
var generateId = nanoid.customAlphabet("abcdefghijklmnopqrstuvwxyz0123456789", 21);
|
|
4469
4470
|
function getConversationId() {
|
|
4470
|
-
|
|
4471
|
-
id = id.toLowerCase().replace(/^-+/, "");
|
|
4472
|
-
return id;
|
|
4471
|
+
return generateId();
|
|
4473
4472
|
}
|
|
4474
4473
|
|
|
4475
4474
|
// src/data-access/conversations.ts
|
package/dist/index.js
CHANGED
|
@@ -2962,10 +2962,9 @@ var getContextConfigCacheEntries = (db) => async (params) => {
|
|
|
2962
2962
|
value: entry.value
|
|
2963
2963
|
}));
|
|
2964
2964
|
};
|
|
2965
|
+
var generateId = customAlphabet("abcdefghijklmnopqrstuvwxyz0123456789", 21);
|
|
2965
2966
|
function getConversationId() {
|
|
2966
|
-
|
|
2967
|
-
id = id.toLowerCase().replace(/^-+/, "");
|
|
2968
|
-
return id;
|
|
2967
|
+
return generateId();
|
|
2969
2968
|
}
|
|
2970
2969
|
|
|
2971
2970
|
// src/data-access/conversations.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-core",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20251006152515",
|
|
4
4
|
"description": "Agents Core contains the database schema, types, and validation schemas for Inkeep Agent Framework, along with core components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|