diff --git a/apps/web/src/app/dashboard/agents/[id]/chat/[chatId]/page.tsx b/apps/web/src/app/dashboard/agents/[id]/chat/[chatId]/page.tsx index 618ca87..870ca84 100644 --- a/apps/web/src/app/dashboard/agents/[id]/chat/[chatId]/page.tsx +++ b/apps/web/src/app/dashboard/agents/[id]/chat/[chatId]/page.tsx @@ -623,7 +623,7 @@ export default function AgentChatPage(): React.ReactElement { onKeyDown={handleKeyDown} placeholder="Type a message..." rows={1} - className="flex-1 px-4 py-3 bg-white border border-border rounded-lg text-foreground placeholder:text-foreground-tertiary focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary resize-none min-h-[48px] max-h-[200px]" + className="flex-1 px-4 py-3 bg-surface border border-border rounded-lg text-foreground placeholder:text-foreground-tertiary focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary resize-none min-h-[48px] max-h-[200px]" style={{ height: 'auto', minHeight: '48px', diff --git a/apps/web/src/app/dashboard/agents/[id]/page.tsx b/apps/web/src/app/dashboard/agents/[id]/page.tsx index c301fcc..607217a 100644 --- a/apps/web/src/app/dashboard/agents/[id]/page.tsx +++ b/apps/web/src/app/dashboard/agents/[id]/page.tsx @@ -211,7 +211,7 @@ conv = resp.json() # conv['data']['messages']`, const currentExample = examples[effectiveLang] ?? examples.curl ?? { language: 'bash', code: '' }; return ( -
+

API Reference

@@ -674,7 +674,7 @@ export default function AgentDetailPage(): React.ReactElement { } > {/* Configuration */} -
+

Configuration

{!isEditing && ( @@ -698,7 +698,7 @@ export default function AgentDetailPage(): React.ReactElement { name="name" value={formData.name} onChange={handleChange} - className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" + className="w-full px-3 py-2 bg-surface border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" />
@@ -711,7 +711,7 @@ export default function AgentDetailPage(): React.ReactElement { name="uid" value={formData.uid} onChange={handleChange} - className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground font-mono text-sm focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" + className="w-full px-3 py-2 bg-surface border border-border rounded-lg text-foreground font-mono text-sm focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" />
@@ -729,7 +729,7 @@ export default function AgentDetailPage(): React.ReactElement { value={formData.description} onChange={handleChange} rows={2} - className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary resize-none" + className="w-full px-3 py-2 bg-surface border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary resize-none" />
@@ -746,7 +746,7 @@ export default function AgentDetailPage(): React.ReactElement { name="provider" value={formData.provider} onChange={handleChange} - className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" + className="w-full px-3 py-2 bg-surface border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" > {SUPPORTED_PROVIDERS.map((p) => (
@@ -809,7 +809,7 @@ export default function AgentDetailPage(): React.ReactElement { min={0} max={2} step={0.1} - className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" + className="w-full px-3 py-2 bg-surface border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" />
@@ -827,7 +827,7 @@ export default function AgentDetailPage(): React.ReactElement { onChange={handleChange} min={1} max={100} - className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" + className="w-full px-3 py-2 bg-surface border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" />
@@ -845,7 +845,7 @@ export default function AgentDetailPage(): React.ReactElement { onChange={handleChange} min={1} max={100} - className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" + className="w-full px-3 py-2 bg-surface border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary" />
@@ -932,7 +932,7 @@ export default function AgentDetailPage(): React.ReactElement { {/* Tools Section */} -
+

Tools

{agentTools.length} attached @@ -966,7 +966,7 @@ export default function AgentDetailPage(): React.ReactElement { {/* Search Results Dropdown */} {showToolSearch && toolSearch && ( -
+
{toolSearchResults.length > 0 ? ( toolSearchResults.map((tool) => (