openmates 0.15.0-alpha.13 → 0.15.0-alpha.14

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.
@@ -46150,10 +46150,10 @@ As of mid-2026, the severe supply shocks from the 2024\u20132025 avian flu have
46150
46150
  },
46151
46151
  device_only_encryption: {
46152
46152
  question: {
46153
- text: "Are my chats encrypted so only my devices can read them?"
46153
+ text: "How are my chats protected?"
46154
46154
  },
46155
46155
  answer: {
46156
- text: "No. OpenMates uses client-side encryption for durable storage and sync, not device-only access. Permanent chat history is encrypted before it is stored, so database and backup records should be ciphertext. But OpenMates servers can process relevant plaintext in memory when needed to answer your request."
46156
+ text: "Your saved chat history is encrypted on your device before it is stored or synced. OpenMates does not provide staff with a normal admin tool to browse private chats, and decrypted chat content is not intended to be written to databases, backups, logs, or traces. When you ask for an AI response or use a server-powered feature, OpenMates may temporarily process the relevant decrypted content in server memory so the request can work. This means hosted OpenMates is privacy-protective, but not a strict zero-knowledge or device-only system."
46157
46157
  }
46158
46158
  },
46159
46159
  recent_context_cache: {
@@ -46233,7 +46233,7 @@ As of mid-2026, the severe supply shocks from the 2024\u20132025 avian flu have
46233
46233
  text: "What if I have the highest privacy requirements?"
46234
46234
  },
46235
46235
  answer: {
46236
- text: "If you have very high privacy requirements, consider self-hosting OpenMates and using local or offline AI models instead of third-party AI providers. This gives you more control over infrastructure, model choice, logs, backups, and provider exposure. It requires technical experience, ongoing maintenance, secure server administration, and enough hardware for useful local AI inference. Self-hosting does not automatically make everything private: you still need to secure the server, backups, secrets, network access, logs, and any external providers you enable."
46236
+ text: "If you have very high privacy requirements, consider the [self-hosting edition](https://github.com/glowingkitty/OpenMates/blob/dev/docs/self-hosting/setup.md) of OpenMates with local or offline AI models instead of third-party AI providers. This gives you more control over infrastructure, model choice, logs, backups, and provider exposure. It requires technical experience, ongoing maintenance, secure server administration, and enough hardware for useful local AI inference. Self-hosting does not automatically make everything private: you still need to secure the server, backups, secrets, network access, logs, and any external providers you enable."
46237
46237
  }
46238
46238
  }
46239
46239
  },
@@ -58918,7 +58918,7 @@ function extractAiAskContent(value) {
58918
58918
  function normalizeApiKeyChatResponse(response) {
58919
58919
  const chatId = typeof response.chat_id === "string" ? response.chat_id : null;
58920
58920
  const category = typeof response.category === "string" ? response.category : null;
58921
- const modelName = typeof response.model_name === "string" ? response.model_name : null;
58921
+ const modelName = typeof response.model_name === "string" ? response.model_name : typeof response.modelName === "string" ? response.modelName : null;
58922
58922
  return {
58923
58923
  status: "completed",
58924
58924
  chatId,
package/dist/cli.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  getExtForLang,
4
4
  serializeToYaml
5
- } from "./chunk-Z4CRE3LS.js";
5
+ } from "./chunk-EKXP5IMG.js";
6
6
  import "./chunk-AXNRPVLE.js";
7
7
  export {
8
8
  getExtForLang,
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ import {
18
18
  reconcileAuthoritativeChats,
19
19
  renderSupportInfo,
20
20
  serializeToYaml
21
- } from "./chunk-Z4CRE3LS.js";
21
+ } from "./chunk-EKXP5IMG.js";
22
22
  import "./chunk-AXNRPVLE.js";
23
23
  export {
24
24
  APP_SKILL_METADATA,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmates",
3
- "version": "0.15.0-alpha.13",
3
+ "version": "0.15.0-alpha.14",
4
4
  "description": "OpenMates CLI and SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",