grapheme-cli 0.4.0

Grapheme CLI for parsing, compiling, and running .gr workflows
1
2
3
4
5
6
7
query HttpGetGoogleMarkdown {
  set { url: "https://medium.com/@apsingiakshay46/stategraph-to-build-build-complex-workflows-involving-llms-8f77e7e03236" }
  |> http.get(url: $current.url)
  |> core.pick(fields: ["body"], input: $current)
  |> html.to_md(html: $current.body)
  |> core.echo(message: $current.text)
}