Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new module,
Vancouver.PromptTest
, to provide utility functions for testing prompts, along with a comprehensive test suite inVancouver.Test.PromptTest
to validate these utilities. The changes aim to streamline the testing of responses for different content types (audio, image, text) and ensure robust handling of various scenarios.New Testing Utilities:
Vancouver.PromptTest
module with functions to process and validate responses (audio_response/1
,image_response/1
,text_response/1
), build request bodies (build_request/2
), and extract roles (get_role/1
). These utilities simplify testing by encapsulating common logic.Test Suite for Utilities:
Vancouver.Test.PromptTest
with unit tests for each utility function:audio_response/1
,image_response/1
, andtext_response/1
with valid and invalid inputs.build_request/2
to ensure it generates properly formatted request payloads.