@tangle-network/sandbox 0.2.1 → 0.3.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.
@@ -383,11 +383,10 @@ declare class ResponsesValidationError extends Error {
383
383
  constructor(message: string, code: string, param?: string);
384
384
  }
385
385
  /**
386
- * Reject Responses requests that ask for tool types Tangle cannot
387
- * service. Function tools, the OpenAI computer-use preview tool, and
388
- * the code interpreter (every Tangle sandbox can run code) are
389
- * accepted; web_search and file_search are explicitly rejected with
390
- * the OpenAI error shape.
386
+ * Reject Responses requests that ask for unsupported tool types.
387
+ * Function tools, computer-use preview, code interpreter, and
388
+ * web_search/web_search_preview are accepted. file_search is rejected
389
+ * (no vector-store backend). Unknown types are rejected.
391
390
  */
392
391
  declare function validateResponsesRequest(req: ResponseCreateParamsBase): void;
393
392
  /**