-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathclient.ts
More file actions
125 lines (110 loc) · 3.6 KB
/
client.ts
File metadata and controls
125 lines (110 loc) · 3.6 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
/*
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Part, SendMessageSuccessResponse, Task } from "@a2a-js/sdk";
import { A2AClient } from "@a2a-js/sdk/client";
import { v0_8 } from "@a2ui/lit";
const A2UI_MIME_TYPE = "application/json+a2ui";
export interface A2UIClientResponse {
messages: v0_8.Types.ServerToClientMessage[];
fallbackText: string | null;
}
export class A2UIClient {
#serverUrl: string;
#client: A2AClient | null = null;
constructor(serverUrl: string = "") {
this.#serverUrl = serverUrl;
}
#ready: Promise<void> = Promise.resolve();
get ready() {
return this.#ready;
}
async #getClient() {
if (!this.#client) {
// Default to localhost:10002 if no URL provided (fallback for restaurant app default)
const baseUrl = this.#serverUrl || "http://localhost:10002";
this.#client = await A2AClient.fromCardUrl(
`${baseUrl}/.well-known/agent-card.json`,
{
fetchImpl: async (url, init) => {
const headers = new Headers(init?.headers);
headers.set("X-A2A-Extensions", "https://a2ui.org/a2a-extension/a2ui/v0.8");
return fetch(url, { ...init, headers });
}
}
);
}
return this.#client;
}
async send(
message: v0_8.Types.A2UIClientEventMessage | string
): Promise<A2UIClientResponse> {
const client = await this.#getClient();
let parts: Part[] = [];
if (typeof message === 'string') {
// Try to parse as JSON first, just in case
try {
const parsed = JSON.parse(message);
if (typeof parsed === 'object' && parsed !== null) {
parts = [{
kind: "data",
data: parsed as unknown as Record<string, unknown>,
mimeType: A2UI_MIME_TYPE,
} as Part];
} else {
parts = [{ kind: "text", text: message }];
}
} catch {
parts = [{ kind: "text", text: message }];
}
} else {
parts = [{
kind: "data",
data: message as unknown as Record<string, unknown>,
mimeType: A2UI_MIME_TYPE,
} as Part];
}
const response = await client.sendMessage({
message: {
messageId: crypto.randomUUID(),
role: "user",
parts: parts,
kind: "message",
},
});
if ("error" in response) {
throw new Error(response.error.message);
}
const result = (response as SendMessageSuccessResponse).result as Task;
if (result.kind === "task" && result.status.message?.parts) {
const messages: v0_8.Types.ServerToClientMessage[] = [];
const textParts: string[] = [];
for (const part of result.status.message.parts) {
if (part.kind === 'data') {
messages.push(part.data as v0_8.Types.ServerToClientMessage);
} else if (part.kind === 'text') {
textParts.push(part.text);
}
}
return {
messages,
fallbackText: messages.length === 0 && textParts.length > 0
? textParts.join('\n')
: null,
};
}
return { messages: [], fallbackText: null };
}
}