Try<T, E>
pattern to LLM related functions
#98
Merged
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 includes several changes to the
examples/function-calling/arguments/claude.sale.input.json
file, updates to thepackage.json
file, and modifications to several schema composer files to improve error handling and validation.Changes to
examples/function-calling/arguments/claude.sale.input.json
:channels
array to a new location and updated itscategory_codes
to include "electronics". [1] [2]tags
array with relevant tags.stocks
names to use hyphens instead of parentheses. [1] [2] [3] [4] [5] [6] [7]Changes to
package.json
:2.0.0-dev.20241201-2
to2.0.0-dev.20241202
.LICENSE
to thefiles
array.Schema composer improvements:
src/composers/HttpLlmApplicationComposer.ts
: Enhanced error handling by adding error messages to theprops.errors
array if validation fails.src/composers/llm/ChatGptSchemaComposer.ts
: Updated methods to returnIResult
objects for better error handling and validation. [1] [2]src/composers/llm/ClaudeSchemaComposer.ts
: Modified methods to useIResult
for improved error handling and validation. [1] [2]src/composers/llm/GeminiSchemaComposer.ts
: Updated methods to returnIResult
objects and improved validation logic. [1] [2]src/composers/llm/LlamaSchemaComposer.ts
: Changed methods to useIResult
for better error handling and validation. [1] [2]