Skip to content

Commit

Permalink
update generation snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
atierian committed Sep 24, 2024
1 parent 4eb5323 commit 7166f34
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,10 @@ export function response(ctx) {
}
const response = toolUse.input.value;
if (typeof response === 'string') {
return JSON.parse(response);
}
return response;
}"
`;
Expand Down Expand Up @@ -404,6 +408,10 @@ export function response(ctx) {
}
const response = toolUse.input.value;
if (typeof response === 'string') {
return JSON.parse(response);
}
return response;
}"
`;

0 comments on commit 7166f34

Please sign in to comment.