We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9542a3 commit c271986Copy full SHA for c271986
2 files changed
samples/client/lit/shell_v0_9/middleware/a2a.ts
@@ -29,7 +29,7 @@ const A2UI_MIME_TYPE = "application/json+a2ui";
29
30
const fetchWithCustomHeader: typeof fetch = async (url, init) => {
31
const headers = new Headers(init?.headers);
32
- headers.set("X-A2A-Extensions", "https://a2ui.org/a2a-extension/a2ui/v0.8");
+ headers.set("X-A2A-Extensions", "https://a2ui.org/a2a-extension/a2ui/v0.9");
33
34
const newInit = { ...init, headers };
35
return fetch(url, newInit);
samples/client/lit/shell_v0_9/vite.config.ts
@@ -30,6 +30,7 @@ export default async () => {
};
return {
+ // Do we need this for this sample?
plugins: [Middleware.A2AMiddleware.plugin()],
build: {
36
rollupOptions: {
0 commit comments