stop

View as MarkdownOpen in Claude

Stop the AI agent session.

Returns

Promise<Record<string, unknown>> — Server acknowledgment.

Example

1import { RelayClient } from '@signalwire/sdk';
2
3const client = new RelayClient({
4 project: process.env.SIGNALWIRE_PROJECT_ID!,
5 token: process.env.SIGNALWIRE_TOKEN!,
6 contexts: ['default']
7});
8
9client.onCall(async (call) => {
10 await call.answer();
11 const action = await call.ai({
12 prompt: { text: 'You are a helpful assistant.' },
13 aiParams: { temperature: 0.7 },
14 });
15
16 // Stop the AI session
17 await action.stop();
18});
19
20await client.run();