harn-stdlib 0.8.26

Embedded Harn standard library source catalog
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// @harn-entrypoint-category workflow.stdlib
import { typed_output_checkpoint } from "std/checkpoint"

/**
 * workflow_typed_output_checkpoint.
 *
 * @effects: []
 * @allocation: heap
 * @errors: []
 * @api_stability: experimental
 * @example: workflow_typed_output_checkpoint(name, prompt, schema, options, validator)
 */
pub fn workflow_typed_output_checkpoint(name, prompt, schema, options = nil, validator = nil) {
  return typed_output_checkpoint(name, prompt, schema, options, validator)
}