Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
203 changes: 200 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/goose/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ aws-sdk-bedrockruntime = "=1.120.0"
aws-sdk-sagemakerruntime = "1.62.0"

# For GCP Vertex AI provider auth
jsonwebtoken = "9.3.1"
jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] }

blake3 = "1.5"
fs2 = "0.4.3"
Expand Down
5 changes: 1 addition & 4 deletions ui/desktop/src/components/ToolCallArguments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,7 @@ export function ToolCallArguments({ args }: ToolCallArgumentsProps) {
<div className={`w-full flex items-stretch ${isExpanded ? '' : 'truncate min-w-0'}`}>
{isExpanded ? (
<div>
<MarkdownContent
content={value}
className="font-sans text-sm text-text-muted"
/>
<MarkdownContent content={value} className="font-sans text-sm text-text-muted" />
</div>
) : (
<button
Expand Down
9 changes: 3 additions & 6 deletions ui/desktop/src/components/common/InlineEditText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,9 @@ export const InlineEditText: React.FC<InlineEditTextProps> = ({
}
}, [handleSave, isSaving]);

const handleChange = useCallback(
(e: React.ChangeEvent<HTMLInputElement>) => {
setEditValue(e.target.value);
},
[]
);
const handleChange = useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
setEditValue(e.target.value);
}, []);

const handleClick = useCallback(
(e: React.MouseEvent) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,9 @@ export function RecipeFormFields({
{field.state.value && field.state.value.trim() && (
<div
className={`border rounded-lg p-3 bg-background-muted ${
field.state.meta.errors.length > 0 ? 'border-red-500' : 'border-border-default'
field.state.meta.errors.length > 0
? 'border-red-500'
: 'border-border-default'
}`}
>
<pre className="text-xs font-mono text-text-default whitespace-pre-wrap break-words max-h-32 overflow-y-auto">
Expand Down
Loading