oh-my-opencode-kikokikok 2.15.1 → 2.15.2

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.1",
2256
+ version: "2.15.2",
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",
package/dist/index.js CHANGED
@@ -43781,8 +43781,8 @@ class Mem0Adapter {
43781
43781
  // src/features/letta-memory/adapter.ts
43782
43782
  var DEFAULT_ENDPOINT2 = "http://localhost:8283";
43783
43783
  var DEFAULT_AGENT_PREFIX = "opencode";
43784
- var DEFAULT_LLM_MODEL = "openai/gpt-4.1";
43785
- var DEFAULT_EMBEDDING_MODEL = "openai/text-embedding-3-small";
43784
+ var DEFAULT_LLM_MODEL = "letta/letta-free";
43785
+ var DEFAULT_EMBEDDING_MODEL = "letta/letta-free";
43786
43786
 
43787
43787
  class LettaAdapter {
43788
43788
  config;
@@ -43946,6 +43946,7 @@ class LettaAdapter {
43946
43946
  try {
43947
43947
  const response2 = await fetch(`${this.endpoint}/v1/health`, {
43948
43948
  method: "GET",
43949
+ redirect: "follow",
43949
43950
  signal: AbortSignal.timeout(5000)
43950
43951
  });
43951
43952
  return response2.ok;
@@ -44010,7 +44011,8 @@ class LettaAdapter {
44010
44011
  const response2 = await fetch(`${this.endpoint}${path7}`, {
44011
44012
  method: options.method,
44012
44013
  headers,
44013
- body: options.body
44014
+ body: options.body,
44015
+ redirect: "follow"
44014
44016
  });
44015
44017
  if (!response2.ok) {
44016
44018
  const text = await response2.text().catch(() => "");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode-kikokikok",
3
- "version": "2.15.1",
3
+ "version": "2.15.2",
4
4
  "description": "OpenCode plugin - custom agents (oracle, librarian) and enhanced features",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",