-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver_side_tools.php
More file actions
395 lines (320 loc) · 11.5 KB
/
server_side_tools.php
File metadata and controls
395 lines (320 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
<?php
/**
* This file is part of the xAI PHP SDK.
*
* (c) 2026 Displace Technologies, LLC
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* This work was inspired by X.AI LLC's Python SDK.
*
* Server-Side Tools Example
* =========================
*
* This example demonstrates how to use server-side tools with the xAI API.
* Server-side tools are executed by xAI's servers and include:
* - Web Search: Search the web for current information
* - X Search: Search X (Twitter) posts
* - Code Execution: Run code on xAI's servers
*
* Usage:
* php examples/server_side_tools.php # Web search demo
* php examples/server_side_tools.php --code # Code execution demo
* php examples/server_side_tools.php --x # X search demo
* php examples/server_side_tools.php --combined # Combined with client tools
*
* Requirements:
* - Set the XAI_API_KEY environment variable
*/
declare(strict_types=1);
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Displace\XaiSdk\Tools\ServerSideTools;
use Displace\XaiSdk\Tools\Tool;
use Displace\XaiSdk\XaiClient;
use function Displace\XaiSdk\Chat\toolResult;
use function Displace\XaiSdk\Chat\user;
// Parse command line arguments
$options = getopt('', ['code', 'x', 'combined', 'help']);
if (isset($options['help'])) {
echo <<<HELP
xAI PHP SDK - Server-Side Tools Example
Usage: php examples/server_side_tools.php [OPTIONS]
Options:
--code Run code execution example
--x Run X (Twitter) search example
--combined Run combined server + client tools example
--help Show this help message
Environment:
XAI_API_KEY Your xAI API key (required)
Without options, runs the web search example.
HELP;
exit(0);
}
// Create the client
try {
$client = new XaiClient();
} catch (RuntimeException $e) {
echo "Error: {$e->getMessage()}\n";
echo "Please set the XAI_API_KEY environment variable.\n";
exit(1);
}
echo "xAI Server-Side Tools Example\n";
echo "=============================\n\n";
/**
* Demonstrates web search tool usage.
*/
function webSearchExample(XaiClient $client): void
{
echo "=== Web Search Example ===\n\n";
$chat = $client->chat->create(
model: 'grok-3',
tools: [
ServerSideTools::webSearch(),
],
);
$query = "What was the result of Arsenal's most recent game? Who scored?";
echo "Query: {$query}\n\n";
echo "Sending request with web search enabled...\n\n";
$chat->append(user($query));
$isThinking = true;
foreach ($chat->stream() as [$response, $chunk]) {
// Display tool calls as they happen
$toolCalls = $chunk->toolCalls ?? [];
foreach ($toolCalls as $toolCall) {
$name = $toolCall['function']['name'] ?? 'unknown';
$args = $toolCall['function']['arguments'] ?? '{}';
echo "\n[Tool call: {$name}]\n";
echo "[Arguments: {$args}]\n\n";
}
// Show thinking progress
if ($response->usage->reasoningTokens > 0 && $isThinking) {
echo "\rThinking... ({$response->usage->reasoningTokens} tokens)";
}
// Show final content
if ($chunk->content !== '' && $isThinking) {
echo "\n\nFinal Response:\n";
$isThinking = false;
}
if ($chunk->content !== '' && ! $isThinking) {
echo $chunk->content;
}
}
echo "\n\n---\n";
echo "Usage:\n";
echo " Prompt tokens: {$response->usage->promptTokens}\n";
echo " Completion tokens: {$response->usage->completionTokens}\n";
echo " Total tokens: {$response->usage->totalTokens}\n";
if (! empty($response->citations)) {
echo "\nCitations:\n";
foreach ($response->citations as $citation) {
echo " - {$citation}\n";
}
}
}
/**
* Demonstrates code execution tool usage.
*/
function codeExecutionExample(XaiClient $client): void
{
echo "=== Code Execution Example ===\n\n";
$chat = $client->chat->create(
model: 'grok-3',
tools: [
ServerSideTools::codeExecution(),
],
);
$query = 'What is the 50th number in the Fibonacci sequence? Please calculate it and show me the code.';
echo "Query: {$query}\n\n";
echo "Sending request with code execution enabled...\n\n";
$chat->append(user($query));
$isThinking = true;
foreach ($chat->stream() as [$response, $chunk]) {
// Display tool calls
$toolCalls = $chunk->toolCalls ?? [];
foreach ($toolCalls as $toolCall) {
$name = $toolCall['function']['name'] ?? 'unknown';
echo "\n[Executing code...]\n";
}
// Display tool outputs (code execution results)
$toolOutputs = $chunk->toolOutputs ?? [];
foreach ($toolOutputs as $output) {
if (isset($output['content'])) {
echo "[Code output: {$output['content']}]\n\n";
}
}
// Show thinking progress
if ($response->usage->reasoningTokens > 0 && $isThinking) {
echo "\rThinking... ({$response->usage->reasoningTokens} tokens)";
}
// Show final content
if ($chunk->content !== '' && $isThinking) {
echo "\n\nFinal Response:\n";
$isThinking = false;
}
if ($chunk->content !== '' && ! $isThinking) {
echo $chunk->content;
}
}
echo "\n\n---\n";
echo "Usage:\n";
echo " Prompt tokens: {$response->usage->promptTokens}\n";
echo " Completion tokens: {$response->usage->completionTokens}\n";
echo " Total tokens: {$response->usage->totalTokens}\n";
}
/**
* Demonstrates X (Twitter) search tool usage.
*/
function xSearchExample(XaiClient $client): void
{
echo "=== X (Twitter) Search Example ===\n\n";
$chat = $client->chat->create(
model: 'grok-3',
tools: [
ServerSideTools::xSearch(
fromDate: new DateTimeImmutable('-7 days'),
toDate: new DateTimeImmutable('now'),
),
],
);
$query = 'What are people saying on X about the latest AI developments?';
echo "Query: {$query}\n\n";
echo "Sending request with X search enabled...\n\n";
$chat->append(user($query));
$isThinking = true;
foreach ($chat->stream() as [$response, $chunk]) {
// Display tool calls
$toolCalls = $chunk->toolCalls ?? [];
foreach ($toolCalls as $toolCall) {
$name = $toolCall['function']['name'] ?? 'unknown';
$args = $toolCall['function']['arguments'] ?? '{}';
echo "\n[Tool call: {$name}]\n";
echo "[Arguments: {$args}]\n\n";
}
// Show thinking progress
if ($response->usage->reasoningTokens > 0 && $isThinking) {
echo "\rThinking... ({$response->usage->reasoningTokens} tokens)";
}
// Show final content
if ($chunk->content !== '' && $isThinking) {
echo "\n\nFinal Response:\n";
$isThinking = false;
}
if ($chunk->content !== '' && ! $isThinking) {
echo $chunk->content;
}
}
echo "\n\n---\n";
echo "Usage:\n";
echo " Prompt tokens: {$response->usage->promptTokens}\n";
echo " Completion tokens: {$response->usage->completionTokens}\n";
echo " Total tokens: {$response->usage->totalTokens}\n";
}
/**
* Demonstrates combining server-side and client-side tools.
*/
function combinedToolsExample(XaiClient $client): void
{
echo "=== Combined Server + Client Tools Example ===\n\n";
// Define a client-side weather tool
$weatherTool = new Tool(
name: 'get_weather',
description: 'Get the current weather for a given city.',
parameters: [
'type' => 'object',
'properties' => [
'city' => [
'type' => 'string',
'description' => 'The name of the city',
],
],
'required' => ['city'],
],
);
// Simulated weather function
$getWeather = function (string $city): string {
return json_encode([
'city' => $city,
'temperature' => 72,
'units' => 'F',
'conditions' => 'sunny',
'description' => "The weather in {$city} is sunny at 72°F.",
]);
};
$chat = $client->chat->create(
model: 'grok-3',
tools: [
ServerSideTools::webSearch(),
$weatherTool,
],
);
$query = "What team won the 2024 Super Bowl, and what's the current weather in their home city?";
echo "Query: {$query}\n\n";
echo "This query will use:\n";
echo " - Web search (server-side) to find the Super Bowl winner\n";
echo " - Weather tool (client-side) to get the weather\n\n";
echo "Sending request...\n\n";
$chat->append(user($query));
while (true) {
$clientSideToolCalls = [];
foreach ($chat->stream() as [$response, $chunk]) {
// Check for tool calls
$toolCalls = $chunk->toolCalls ?? [];
foreach ($toolCalls as $toolCall) {
$name = $toolCall['function']['name'] ?? '';
// Determine if client-side or server-side
if ($name === 'get_weather') {
$clientSideToolCalls[] = $toolCall;
echo "[Client-side tool call: {$name}]\n";
echo '[Arguments: ' . ($toolCall['function']['arguments'] ?? '{}') . "]\n\n";
} else {
echo "[Server-side tool call: {$name}]\n";
echo '[Arguments: ' . ($toolCall['function']['arguments'] ?? '{}') . "]\n\n";
}
}
// Show content as it streams
if ($chunk->content !== '') {
echo $chunk->content;
}
}
// Append response to conversation
$chat->append($response);
// If no client-side tool calls, we're done
if (empty($clientSideToolCalls)) {
break;
}
// Process client-side tool calls
foreach ($clientSideToolCalls as $toolCall) {
$args = json_decode($toolCall['function']['arguments'] ?? '{}', true);
$city = $args['city'] ?? 'Unknown';
echo "[Executing client-side tool for city: {$city}]\n";
$result = $getWeather($city);
echo "[Result: {$result}]\n\n";
$chat->append(toolResult($result, $toolCall['id'] ?? ''));
}
echo "Continuing conversation with tool results...\n\n";
}
echo "\n---\n";
echo "Usage:\n";
echo " Prompt tokens: {$response->usage->promptTokens}\n";
echo " Completion tokens: {$response->usage->completionTokens}\n";
echo " Total tokens: {$response->usage->totalTokens}\n";
}
// Run the appropriate example
try {
if (isset($options['code'])) {
codeExecutionExample($client);
} elseif (isset($options['x'])) {
xSearchExample($client);
} elseif (isset($options['combined'])) {
combinedToolsExample($client);
} else {
webSearchExample($client);
}
} catch (Displace\XaiSdk\Exceptions\XaiException $e) {
echo "\nError: {$e->getMessage()}\n";
if ($e->getHttpStatusCode() !== null) {
echo "HTTP Status: {$e->getHttpStatusCode()}\n";
}
exit(1);
}