llmasaservice-ui 0.7.16 → 0.7.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/AgentPanel.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -1151,7 +1151,7 @@ var AgentPanel = ({
|
|
|
1151
1151
|
const fetchAgentData = () => __async(void 0, null, function* () {
|
|
1152
1152
|
try {
|
|
1153
1153
|
const response = yield fetch(
|
|
1154
|
-
url.endsWith("dev") ? `https://
|
|
1154
|
+
url.endsWith("dev") ? `https://8ftw8droff.execute-api.us-east-1.amazonaws.com/dev/agents/${agent}` : `https://api.llmasaservice.io/agents/${agent}`,
|
|
1155
1155
|
{
|
|
1156
1156
|
method: "GET",
|
|
1157
1157
|
headers: {
|
package/dist/index.mjs
CHANGED
|
@@ -1117,7 +1117,7 @@ var AgentPanel = ({
|
|
|
1117
1117
|
const fetchAgentData = () => __async(void 0, null, function* () {
|
|
1118
1118
|
try {
|
|
1119
1119
|
const response = yield fetch(
|
|
1120
|
-
url.endsWith("dev") ? `https://
|
|
1120
|
+
url.endsWith("dev") ? `https://8ftw8droff.execute-api.us-east-1.amazonaws.com/dev/agents/${agent}` : `https://api.llmasaservice.io/agents/${agent}`,
|
|
1121
1121
|
{
|
|
1122
1122
|
method: "GET",
|
|
1123
1123
|
headers: {
|
package/package.json
CHANGED
package/src/AgentPanel.tsx
CHANGED
|
@@ -115,7 +115,7 @@ const AgentPanel: React.FC<AgentPanelProps & ExtraProps> = ({
|
|
|
115
115
|
try {
|
|
116
116
|
const response = await fetch(
|
|
117
117
|
url.endsWith("dev")
|
|
118
|
-
? `https://
|
|
118
|
+
? `https://8ftw8droff.execute-api.us-east-1.amazonaws.com/dev/agents/${agent}`
|
|
119
119
|
: `https://api.llmasaservice.io/agents/${agent}`,
|
|
120
120
|
{
|
|
121
121
|
method: "GET",
|