daemora 1.0.3 → 1.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "daemora",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "A powerful open-source AI agent that runs on your machine. Connects to any AI model, any MCP server, any channel. Fully autonomous - plans, codes, tests, browses, emails, and manages your tools without asking permission.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -34,6 +34,16 @@ export const models = {
34
34
  capabilities: ["text", "tools", "reasoning"],
35
35
  tier: "standard",
36
36
  },
37
+ "openai:o4-mini": {
38
+ provider: "openai",
39
+ model: "o4-mini",
40
+ contextWindow: 200_000,
41
+ compactAt: 140_000,
42
+ costPer1kInput: 0.0011,
43
+ costPer1kOutput: 0.0044,
44
+ capabilities: ["text", "tools", "reasoning"],
45
+ tier: "standard",
46
+ },
37
47
 
38
48
  // Anthropic
39
49
  "anthropic:claude-sonnet-4-6": {