Michael Bryan
Michael Bryan
While implementing #345 we added a fairly benign test to make sure the right error message is emitted when making sure our pipeline is a DAG and has no loops....
Something @Ge-te pointed out is it'd be really nice if capabilities had a `description` field. That way you can give a better explanation of what is expected from a particular...
It'd be nice if each Rune had a `description` field at the top level so people know what it is for. ```yaml version: 1 description: | A rune which copies...
Quoting directly from https://github.com/hotg-ai/rune/issues/242#issuecomment-906305787 --- At the moment all data lives inside WebAssembly linear memory and the only copies that happen are when we do inference. I think we should...
This was the thing that originally prompted #242. Users should be able to pass `--image-out ./output.png` and have the output tensor (courtesy of #288) written to the corresponding PNG file....
Copied straight from https://github.com/hotg-ai/rune/issues/242#issuecomment-906305787 - essentially #242, but generalised to all outputs. --- My thoughts are that when the Rune requests an output it should provide some sort of specifier/descriptor...
Quoting directly from https://github.com/hotg-ai/rune/issues/242#issuecomment-906305787 --- ## Remove Copies from the Tensor Definition The current definition for a "tensor" inside a Rune contains a reference-counted buffer (on the heap) with methods...
At the moment, it's hard to make changes to the Rune-runtime interface because the Rune will fail to load due to obscure errors (e.g. an import function's signature is different...
In #273 we added resources to `rune build` and the Rust runtime, but because the web runtime can't be used outside the browser (#270) we didn't detect that the web...
Originally mentioned by @f0rodo in https://github.com/hotg-ai/rune/pull/261#issuecomment-903305619, we need to have some simple examples of using the web runtime in a real application. I'm thinking our options are: - Make a...