├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md └── src ├── cli.rs ├── simple.rs └── token_output_stream.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustai-solutions/candle_demo_openchat_35/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustai-solutions/candle_demo_openchat_35/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustai-solutions/candle_demo_openchat_35/HEAD/README.md -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustai-solutions/candle_demo_openchat_35/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustai-solutions/candle_demo_openchat_35/HEAD/src/simple.rs -------------------------------------------------------------------------------- /src/token_output_stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustai-solutions/candle_demo_openchat_35/HEAD/src/token_output_stream.rs --------------------------------------------------------------------------------