add user agent on ui (#3404)

This commit is contained in:
LawyZheng
2025-09-10 15:50:54 +08:00
committed by GitHub
parent 6b076ffb44
commit 111b964fcc

View File

@@ -13,6 +13,7 @@ const client = axios.create({
baseURL: apiV1BaseUrl,
headers: {
"Content-Type": "application/json",
"x-user-agent": "skyvern-ui",
"x-api-key": envCredential,
},
});
@@ -21,6 +22,7 @@ const v2Client = axios.create({
baseURL: apiV2BaseUrl,
headers: {
"Content-Type": "application/json",
"x-user-agent": "skyvern-ui",
"x-api-key": envCredential,
},
});
@@ -29,6 +31,7 @@ const clientSansApiV1 = axios.create({
baseURL: apiSansApiV1BaseUrl,
headers: {
"Content-Type": "application/json",
"x-user-agent": "skyvern-ui",
"x-api-key": envCredential,
},
});