oh-my-opencode-kikokikok 2.15.11 → 2.15.12
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/cli/index.js
CHANGED
|
@@ -2253,7 +2253,7 @@ var require_picocolors = __commonJS((exports, module) => {
|
|
|
2253
2253
|
var require_package = __commonJS((exports, module) => {
|
|
2254
2254
|
module.exports = {
|
|
2255
2255
|
name: "oh-my-opencode-kikokikok",
|
|
2256
|
-
version: "2.15.
|
|
2256
|
+
version: "2.15.12",
|
|
2257
2257
|
description: "OpenCode plugin - custom agents (oracle, librarian) and enhanced features",
|
|
2258
2258
|
main: "dist/index.js",
|
|
2259
2259
|
types: "dist/index.d.ts",
|
|
@@ -27,6 +27,9 @@ export declare class LettaAdapter {
|
|
|
27
27
|
* Resolves user model name to Letta handle. Letta requires exact handle matches
|
|
28
28
|
* AND valid provider prefix (letta/, openai/). Models with other prefixes like
|
|
29
29
|
* openai-proxy/ will fail agent creation even if registered in the model list.
|
|
30
|
+
*
|
|
31
|
+
* Returns the ORIGINAL handle from the model list (e.g., openai-proxy/model-name).
|
|
32
|
+
* Normalization to Letta-compatible prefixes happens separately in getEmbeddingModel/getLlmModel.
|
|
30
33
|
*/
|
|
31
34
|
private resolveModelHandle;
|
|
32
35
|
private getEmbeddingModel;
|
package/dist/index.js
CHANGED
|
@@ -44158,6 +44158,8 @@ class LettaAdapter {
|
|
|
44158
44158
|
name: agentName,
|
|
44159
44159
|
model: llmModel,
|
|
44160
44160
|
embedding: embeddingModel,
|
|
44161
|
+
llm_config: { handle: llmModel },
|
|
44162
|
+
embedding_config: { handle: embeddingModel },
|
|
44161
44163
|
memory_blocks: [
|
|
44162
44164
|
{ label: "persona", value: `OpenCode memory agent for ${layer} layer` },
|
|
44163
44165
|
{ label: "human", value: this.getUserId(layer) }
|
|
@@ -44198,6 +44200,8 @@ class LettaAdapter {
|
|
|
44198
44200
|
name: agentName,
|
|
44199
44201
|
model: llmModel,
|
|
44200
44202
|
embedding: embeddingModel,
|
|
44203
|
+
llm_config: { handle: llmModel },
|
|
44204
|
+
embedding_config: { handle: embeddingModel },
|
|
44201
44205
|
memory_blocks: [
|
|
44202
44206
|
{ label: "persona", value: `OpenCode memory agent for ${layer} layer` },
|
|
44203
44207
|
{ label: "human", value: this.getUserId(layer) }
|