Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/odd-dogs-buy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-llama": patch
---

chore: bump llmaindex
4 changes: 3 additions & 1 deletion e2e/shared/llamaindexserver_template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ for (const useCase of templateUseCases) {
templateFramework === "express",
);
await page.goto(`http://localhost:${port}`);
await expect(page.getByText("Built by LlamaIndex")).toBeVisible();
await expect(page.getByText("Built by LlamaIndex")).toBeVisible({
timeout: 5 * 60 * 1000,
});
});

test("Frontend should be able to submit a message and receive the start of a streamed response", async ({
Expand Down
4 changes: 2 additions & 2 deletions templates/types/llamaindexserver/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"dependencies": {
"@llamaindex/openai": "0.2.0",
"@llamaindex/readers": "^2.0.0",
"@llamaindex/server": "0.1.3",
"@llamaindex/server": "0.1.4",
"@llamaindex/tools": "0.0.4",
"dotenv": "^16.4.7",
"llamaindex": "0.9.17",
"llamaindex": "0.10.1",
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix issue: [Error: 400 Invalid type for 'messages[1].content': expected one of a string or array of objects, but got an object instead.]

"zod": "^3.23.8"
},
"devDependencies": {
Expand Down