Skip to content

Commit 13cb51b

Browse files
committed
llamaindex
1 parent 6ae56e9 commit 13cb51b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

typescript-sdk/apps/dojo/e2e/tests/llamaIndexTests/agenticChatPage.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ test("[LlamaIndex] Agentic Chat sends and receives a message", async ({
1111
}) => {
1212
await retryOnAIFailure(async () => {
1313
await page.goto(
14-
"https://ag-ui-dojo-nine.vercel.app/llama-index/feature/agentic_chat"
14+
"/llama-index/feature/agentic_chat"
1515
);
1616

1717
const chat = new AgenticChatPage(page);
@@ -31,7 +31,7 @@ test("[LlamaIndex] Agentic Chat changes background on message and reset", async
3131
}) => {
3232
await retryOnAIFailure(async () => {
3333
await page.goto(
34-
"https://ag-ui-dojo-nine.vercel.app/llama-index/feature/agentic_chat"
34+
"/llama-index/feature/agentic_chat"
3535
);
3636

3737
const chat = new AgenticChatPage(page);
@@ -79,7 +79,7 @@ test("[LlamaIndex] Agentic Chat retains memory of user messages during a convers
7979
}) => {
8080
await retryOnAIFailure(async () => {
8181
await page.goto(
82-
"https://ag-ui-dojo-nine.vercel.app/llama-index/feature/agentic_chat"
82+
"/llama-index/feature/agentic_chat"
8383
);
8484

8585
const chat = new AgenticChatPage(page);

typescript-sdk/apps/dojo/e2e/tests/llamaIndexTests/agenticGenUI.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ test.describe("Agent Generative UI Feature", () => {
88
const genUIAgent = new AgenticGenUIPage(page);
99

1010
await page.goto(
11-
"https://ag-ui-dojo-nine.vercel.app/llama-index/feature/agentic_generative_ui"
11+
"/llama-index/feature/agentic_generative_ui"
1212
);
1313

1414
await genUIAgent.openChat();
@@ -41,7 +41,7 @@ test.describe("Agent Generative UI Feature", () => {
4141
const genUIAgent = new AgenticGenUIPage(page);
4242

4343
await page.goto(
44-
"https://ag-ui-dojo-nine.vercel.app/llama-index/feature/agentic_generative_ui"
44+
"/llama-index/feature/agentic_generative_ui"
4545
);
4646

4747
await genUIAgent.openChat();

typescript-sdk/apps/dojo/e2e/tests/llamaIndexTests/humanInTheLoopPage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test.describe("Human in the Loop Feature", () => {
99
const humanInLoop = new HumanInLoopPage(page);
1010

1111
await page.goto(
12-
"https://ag-ui-dojo-nine.vercel.app/llama-index/feature/human_in_the_loop"
12+
"/llama-index/feature/human_in_the_loop"
1313
);
1414

1515
await humanInLoop.openChat();
@@ -53,7 +53,7 @@ test.describe("Human in the Loop Feature", () => {
5353
const humanInLoop = new HumanInLoopPage(page);
5454

5555
await page.goto(
56-
"https://ag-ui-dojo-nine.vercel.app/llama-index/feature/human_in_the_loop"
56+
"/llama-index/feature/human_in_the_loop"
5757
);
5858

5959
await humanInLoop.openChat();

typescript-sdk/apps/dojo/e2e/tests/llamaIndexTests/sharedStatePage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test.describe("Shared State Feature", () => {
99

1010
// Update URL to new domain
1111
await page.goto(
12-
"https://ag-ui-dojo-nine.vercel.app/llama-index/feature/shared_state"
12+
"/llama-index/feature/shared_state"
1313
);
1414

1515
await sharedStateAgent.openChat();
@@ -27,7 +27,7 @@ test.describe("Shared State Feature", () => {
2727
const sharedStateAgent = new SharedStatePage(page);
2828

2929
await page.goto(
30-
"https://ag-ui-dojo-nine.vercel.app/llama-index/feature/shared_state"
30+
"/llama-index/feature/shared_state"
3131
);
3232

3333
await sharedStateAgent.openChat();

0 commit comments

Comments
 (0)