Improve default behavior

This commit is contained in:
Nicolas Mowen
2026-02-16 19:28:33 -07:00
parent 7551332c01
commit 7f69233f71
2 changed files with 4 additions and 4 deletions

View File

@@ -126,8 +126,8 @@ def get_tool_definitions() -> List[Dict[str, Any]]:
},
"limit": {
"type": "integer",
"description": "Maximum number of objects to return (default: 10).",
"default": 10,
"description": "Maximum number of objects to return (default: 25).",
"default": 25,
},
},
},
@@ -222,7 +222,7 @@ async def _execute_search_objects(
zone=zones,
after=after,
before=before,
limit=arguments.get("limit", 10),
limit=arguments.get("limit", 25),
)
try:

View File

@@ -164,7 +164,7 @@ export default function ChatPage() {
return (
<div className="flex size-full justify-center p-2">
<div className="flex size-full flex-col xl:w-[50%] 3xl:w-[35%]">
<div className="flex min-h-0 w-full flex-1 flex-col gap-2 overflow-y-auto">
<div className="scrollbar-container flex min-h-0 w-full flex-1 flex-col gap-2 overflow-y-auto">
{messages.map((msg, i) => (
<div key={i} className="flex flex-col gap-2">
{msg.role === "assistant" && msg.toolCalls && (