cd /news/ai-tools/client-side-tools-now-available-for-… · home topics ai-tools article
[ARTICLE · art-49766] src=telnyx.com ↗ pub= topic=ai-tools verified=true sentiment=↑ positive

Client-Side Tools Now Available for Telnyx AI Assistants

Telnyx launched client-side tools for its AI Assistants, enabling functions to run directly in the browser during voice or chat conversations without backend round-trips. The feature, available via the @telnyx/ai-agent-lib library version 0.5.0+, supports WebRTC-based conversations and allows access to browser state and local data.

read1 min views1 publishedJul 7, 2026
Client-Side Tools Now Available for Telnyx AI Assistants
Image: Telnyx (auto-discovered)

Contact us

Log in

AI Assistants on Telnyx can now call functions that run directly in the browser during a voice or chat conversation. Client-side tools give the assistant access to browser state, local data, and any API the page is already authenticated to, without a webhook or backend round-trip.

registerClientTool

and unregisterClientTool

. Per-tool timeout is configurable via clientToolTimeoutMs

.npm install @telnyx/ai-agent-lib

(requires version 0.5.0 or later).

import { TelnyxAIAgent } from '@telnyx/ai-agent-lib';

const agent = new TelnyxAIAgent({
  agentId: 'your-agent-id',
  clientTools: {
    lookup_order: async (args) => {
      const { orderId } = args as { orderId: string };
      const response = await fetch(`/api/orders/${orderId}`);
      const order = await response.json();
      return { status: 'found', orderId: order.id, total: order.total };
    },
  },
});

Client-side tools are available for WebRTC-based conversations (voice and chat) using the @telnyx/ai-agent-lib

library. They are not available for SIP or phone-call-based conversations.

Learn more in the client-side tools guide or the AI Agent Lib docs.

── more in #ai-tools 4 stories · sorted by recency
── more on @telnyx 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/client-side-tools-no…] indexed:0 read:1min 2026-07-07 ·