llmos 0.1.0

Boilerplate agent trait, types, and llmos CLI entrypoint.
Documentation
  • Coverage
  • 55.56%
    5 out of 9 items documented0 out of 7 items with examples
  • Size
  • Source code size: 12.28 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.66 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 48s Average build duration of successful builds.
  • all releases: 48s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • llmos/llmos
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • zhjwpku

llmos

Rust boilerplate for an agent (trait + types) and a llmos CLI binary, ready to publish on crates.io.

Run locally

cargo run --bin llmos -- run --input "hello"

Read from stdin:

echo "hello" | cargo run --bin llmos -- run

Library

Use the Agent trait and EchoAgent from the llmos crate, or swap in your own Agent implementation.

Publish to crates.io

  1. Create an account on crates.io and an API token.
  2. Run cargo login and paste the token.
  3. Ensure the package name llmos is available (or change name in Cargo.toml).
  4. cargo publish --dry-run then cargo publish.

After the first publish, docs appear on docs.rs automatically.

License

MIT. See LICENSE.