agent-lattice 0.9.17 → 0.9.18

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/README.md CHANGED
@@ -78,9 +78,9 @@ const result = await agent.prompt("Return the answer to 2 + 2.", {
78
78
  });
79
79
  ```
80
80
 
81
- When `outputFormat` is set, the SDK verifies that the final answer is a pure
82
- JSON value. If a compatible provider ignores structured output parameters and
83
- returns Markdown or prose, the run finishes with an error result.
81
+ When `outputFormat` is set, the SDK sends structured output parameters to the
82
+ provider and returns the final text unchanged. Parse or validate the returned
83
+ JSON in your application when you need a typed value.
84
84
 
85
85
  ## Multimodal Input
86
86
 
package/dist/index.d.ts CHANGED
@@ -457,8 +457,6 @@ export declare class MaxTurnsError extends AgentSDKError {
457
457
  }
458
458
  export declare class AbortError extends AgentSDKError {
459
459
  }
460
- export declare class StructuredOutputError extends AgentSDKError {
461
- }
462
460
  export declare class ToolPermissionDeniedError extends AgentSDKError {
463
461
  readonly denial: PermissionDenial;
464
462
  constructor(denial: PermissionDenial);