juglans 0.2.15

Compiler and runtime for Juglans Workflow Language
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[test_config]: config(budget=1.0)

[test_setup]: greeting = "Hello, test_user!"

[test_ctx_contains]: {
  msg = "Hello, world!"
  assert(ctx_contains="Hello", ctx_path="msg")
}

[test_ctx_not_found]: {
  msg = "Hello, world!"
  assert(ctx_contains="NOTFOUND", ctx_path="msg")
}

[test_tool_trace]: {
  status = "ok"
  assert(tool_called="set_context")
}