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
4 changes: 2 additions & 2 deletions apps/shinkai-desktop/src/pages/add-ai.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ const AddAIPage = () => {
<SelectValue placeholder={' '} />
</SelectTrigger>
</FormControl>
<SelectContent className="max-h-[800px]">
<SelectContent className="max-h-[500px]">
{modelOptions.map((model) => (
<SelectItem
key={model.value}
Expand Down Expand Up @@ -384,7 +384,7 @@ const AddAIPage = () => {
<SelectValue />
</SelectTrigger>
</FormControl>
<SelectContent className="max-h-[300px] overflow-y-auto text-xs">
<SelectContent className="max-h-[500px] overflow-y-auto text-xs">
{modelTypeOptions.map((modelType) => (
<SelectItem
key={modelType.value}
Expand Down
4 changes: 2 additions & 2 deletions apps/shinkai-desktop/src/pages/ai-model-installation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ const AIModelInstallation = () => {
title={t('llmProviders.localAI.installTitle')}
>
<ResourcesBanner />
<TabsContent className="h-full" value="local">
<TabsContent className="flex-1 overflow-y-auto" value="local">
<div className="flex items-center justify-between gap-10 space-y-2 pb-4">
<div className="flex-1">
<h1 className="font-clash text-lg font-medium">Local AI</h1>
Expand Down Expand Up @@ -282,7 +282,7 @@ const AIModelInstallation = () => {
parentShowAllOllamaModels={showAllOllamaModels}
/>
</TabsContent>
<TabsContent className="h-full" value="cloud">
<TabsContent className="flex-1 overflow-y-auto" value="cloud">
<div className="flex items-center justify-between gap-10 space-y-2 pb-4">
<div className="max-w-3xl">
<h1 className="font-clash text-lg font-medium">Cloud AI</h1>
Expand Down
2 changes: 1 addition & 1 deletion libs/shinkai-ui/src/components/markdown-preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const ImageAwareLink: FC<ComponentPropsWithoutRef<'a'>> = ({
<img
src={href}
alt={typeof children === 'string' ? children : 'Image'}
className="aspect-square h-auto max-w-full cursor-pointer rounded-lg border border-gray-600 shadow-sm transition-opacity hover:opacity-90"
className="h-auto max-w-full cursor-pointer rounded-lg border border-gray-600 shadow-sm transition-opacity hover:opacity-90"
onClick={() => window.open(href, '_blank')}
onError={(e) => {
// Fallback to regular link if image fails to load
Expand Down
Loading