Releases: RockSolt/ruby_llm-test
Releases · RockSolt/ruby_llm-test
Release 0.2.0: Expose Request Parameters for Verification
This release exposes the request parameters that were sent to the LLM so that tests can make assertions against things like model and tool calls.
The minimum required version of RubyLLM has been relaxed to 1.5, and tests have been added across older versions of the gem to verify compatibility.
What's Changed
- Add code example to top of README by @toddkummer in #7
- Add tests, relax minimum required RubyLLM version to 1.5 by @toddkummer in #8
- Expose Request Parameters for Assertions by @toddkummer in #9
- Require MFA by @toddkummer in #10
- Add checksums to Gemfile.lock by @toddkummer in #11
- Add tests and documentation for testing args by @toddkummer in #12
- Release 0.2.0: Expose Request Parameters for Verification by @toddkummer in #13
Full Changelog: v0.1.0...v0.2.0
Release 0.1.0: Test Your Code!
This is the initial release. For use with the RubyLLM gem, this gem allows calls to LLM's to be stubbed easily, so you can test your application code.
RubyLLM::Test.stub_response("Outlook good")
chat = RubyLLM.chat
response = chat.ask "What are the odds this works?"
assert_equal "Outlook good", response.content