determinate 0.0.0 → 1.0.0

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -4,7 +4,7 @@ A TypeScript library that treats LLMs as next-action predictors instead of conve
4
4
 
5
5
  ## The Problem
6
6
 
7
- Current agentic frameworks are built around a conversation metaphor: an append-only chat history, a static list of tools, and a loop that generates the next message given everything that came before. This works well for coding assistants where the environment is deterministic and stable, but falls apart in dynamic environments where:
7
+ Current agentic frameworks are built around a conversation metaphor: an append-only chat history, a static list of tools, and a loop that generates the next message given everything that came before. This works well for coding assistants where the environment is stable, but falls apart in dynamic environments where:
8
8
 
9
9
  - **State goes stale.** If you inject environment state each turn across a 50-turn interaction, you have 50 snapshots in context, 49 of which are wrong. The oldest, most incorrect snapshot has the strongest positional signal.
10
10
  - **Context fills with noise.** Failed tool calls, redundant observations, and retry loops consume tokens without contributing to decisions. Half the conversation history in a typical agentic run is the agent's own mistakes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "determinate",
3
- "version": "0.0.0",
3
+ "version": "1.0.0",
4
4
  "description": "Decision engine that treats LLMs as next-action predictors with constrained structured output",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -11,7 +11,11 @@
11
11
  "import": "./dist/index.js"
12
12
  }
13
13
  },
14
- "files": ["dist", "README.md", "LICENSE"],
14
+ "files": [
15
+ "dist",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
15
19
  "scripts": {
16
20
  "build": "tsc -p tsconfig.build.json",
17
21
  "test": "bun test",