Tool Use
AI assistants that call functions — weather lookups, web search, database queries. AgentsKit renders tool calls with expandable cards showing arguments and results.
With AgentsKit
The ToolCallView component handles everything:
import { useChat, ChatContainer, Message, ToolCallView } from '@agentskit/react'
function Chat() {
const chat = useChat({ adapter })
return (
<ChatContainer>
{chat.messages.map(msg => (
<div key={msg.id}>
<Message message={msg} />
{msg.toolCalls?.map(tc => (
<ToolCallView key={tc.id} toolCall={tc} />
))}
</div>
))}
</ChatContainer>
)
}