@poncho-ai/harness 0.11.0 → 0.11.1

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @poncho-ai/harness@0.11.0 build /Users/cesar/Dev/latitude/poncho-ai/packages/harness
2
+ > @poncho-ai/harness@0.11.1 build /home/runner/work/poncho-ai/poncho-ai/packages/harness
3
3
  > tsup src/index.ts --format esm --dts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -8,7 +8,7 @@
8
8
  CLI Target: es2022
9
9
  ESM Build start
10
10
  ESM dist/index.js 138.19 KB
11
- ESM ⚡️ Build success in 289ms
11
+ ESM ⚡️ Build success in 64ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 3549ms
13
+ DTS ⚡️ Build success in 4085ms
14
14
  DTS dist/index.d.ts 17.16 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @poncho-ai/harness
2
2
 
3
+ ## 0.11.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`8a3937e`](https://github.com/cesr/poncho-ai/commit/8a3937e95bfb7f269e8fe46dd41640eacb30af43) Thanks [@cesr](https://github.com/cesr)! - Increase the first model response timeout from 30s to 180s to reduce premature model timeout errors on slower providers.
8
+
3
9
  ## 0.11.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.js CHANGED
@@ -2114,7 +2114,7 @@ var ToolDispatcher = class {
2114
2114
  // src/harness.ts
2115
2115
  var now = () => Date.now();
2116
2116
  var MAX_CONTEXT_MESSAGES = 40;
2117
- var FIRST_CHUNK_TIMEOUT_MS = 3e4;
2117
+ var FIRST_CHUNK_TIMEOUT_MS = 18e4;
2118
2118
  var SKILL_TOOL_NAMES = [
2119
2119
  "activate_skill",
2120
2120
  "deactivate_skill",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poncho-ai/harness",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Agent execution runtime - conversation loop, tool dispatch, streaming",
5
5
  "repository": {
6
6
  "type": "git",
package/src/harness.ts CHANGED
@@ -55,7 +55,7 @@ export interface HarnessRunOutput {
55
55
 
56
56
  const now = (): number => Date.now();
57
57
  const MAX_CONTEXT_MESSAGES = 40;
58
- const FIRST_CHUNK_TIMEOUT_MS = 30_000; // 30s to receive the first chunk from the model
58
+ const FIRST_CHUNK_TIMEOUT_MS = 180_000; // 180s to receive the first chunk from the model
59
59
  const SKILL_TOOL_NAMES = [
60
60
  "activate_skill",
61
61
  "deactivate_skill",
@@ -1,22 +0,0 @@
1
-
2
- > @poncho-ai/harness@0.1.0 test /Users/cesar/Dev/latitude/agentl/packages/harness
3
- > vitest
4
-
5
-
6
-  RUN  v1.6.1 /Users/cesar/Dev/latitude/agentl/packages/harness
7
-
8
- [event] step:completed {"type":"step:completed","step":1,"duration":1}
9
- [event] step:started {"type":"step:started","step":2}
10
- ✓ test/telemetry.test.ts  (3 tests) 5ms
11
- ✓ test/state.test.ts  (4 tests) 20ms
12
- ✓ test/mcp.test.ts  (1 test) 31ms
13
- ✓ test/memory.test.ts  (4 tests) 11ms
14
- ✓ test/agent-parser.test.ts  (2 tests) 8ms
15
- ✓ test/model-factory.test.ts  (2 tests) 7ms
16
- ✓ test/harness.test.ts  (15 tests) 57ms
17
-
18
-  Test Files  7 passed (7)
19
-  Tests  31 passed (31)
20
-  Start at  12:06:00
21
-  Duration  1.66s (transform 964ms, setup 0ms, collect 1.43s, tests 139ms, environment 1ms, prepare 3.37s)
22
-