### Run API Test Example Source: https://github.com/shadowmint/llama-cpp-rs/blob/main/README.md Execute the 'test_api' example test provided with the llama-cpp-rs library. This command runs the test in release mode for better performance and uses the '--nocapture' flag to display standard output during the test execution. ```Shell cargo test --release --test "test_api" -- --nocapture ``` -------------------------------- ### Run Generator Test Example Source: https://github.com/shadowmint/llama-cpp-rs/blob/main/README.md Execute the 'test_generator' example test provided with the llama-cpp-rs library. This command runs the test in release mode for better performance and uses the '--nocapture' flag to display standard output during the test execution. ```Shell cargo test --release --test "test_generator" -- --nocapture ``` -------------------------------- ### Run Incremental Instruct Generator Test Example Source: https://github.com/shadowmint/llama-cpp-rs/blob/main/README.md Execute the 'test_generator_incremental_instruct' example test provided with the llama-cpp-rs library. This command runs the test in release mode for better performance and uses the '--nocapture' flag to display standard output during the test execution. ```Shell cargo test --release --test "test_generator_incremental_instruct" -- --nocapture ``` -------------------------------- ### Run Incremental Generator Test Example Source: https://github.com/shadowmint/llama-cpp-rs/blob/main/README.md Execute the 'test_generator_incremental' example test provided with the llama-cpp-rs library. This command runs the test in release mode for better performance and uses the '--nocapture' flag to display standard output during the test execution. ```Shell cargo test --release --test "test_generator_incremental" -- --nocapture ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.