[PR #27] [CLOSED] feat: add-nextjs-llamaindex-agent-example #30

Closed
opened 2026-02-16 00:15:24 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/create_llama_projects/pull/27
Author: @thucpn
Created: 3/29/2024
Status: Closed

Base: mainHead: feat/add-nextjs-llamaindex-agent-example


📝 Commits (6)

  • 4578fc6 feat/add-nextjs-llamaindex-agent-example
  • ad62ff1 wiki card
  • 6f0b216 fix: remove engine folder & response wiki card ui
  • bf6005b refactor: make createAgentStreamableUI
  • adc173f enhance UI
  • 4c84ea5 fix: revert mock

📊 Changes

47 files changed (+6354 additions, -0 deletions)

View changed files

nextjs-llamaindex-agent/.eslintrc.json (+8 -0)
nextjs-llamaindex-agent/.gitignore (+38 -0)
nextjs-llamaindex-agent/Dockerfile (+16 -0)
nextjs-llamaindex-agent/README.md (+38 -0)
nextjs-llamaindex-agent/app/components/chat-section.tsx (+12 -0)
nextjs-llamaindex-agent/app/components/header.tsx (+28 -0)
nextjs-llamaindex-agent/app/components/ui/button.tsx (+56 -0)
nextjs-llamaindex-agent/app/components/ui/chat/chat-avatar.tsx (+35 -0)
nextjs-llamaindex-agent/app/components/ui/chat/chat-input.tsx (+57 -0)
nextjs-llamaindex-agent/app/components/ui/chat/chat-loading.tsx (+9 -0)
nextjs-llamaindex-agent/app/components/ui/chat/chat-message.tsx (+21 -0)
nextjs-llamaindex-agent/app/components/ui/chat/chat-messages.tsx (+34 -0)
nextjs-llamaindex-agent/app/components/ui/chat/codeblock.tsx (+139 -0)
nextjs-llamaindex-agent/app/components/ui/chat/index.ts (+5 -0)
nextjs-llamaindex-agent/app/components/ui/chat/markdown.tsx (+59 -0)
nextjs-llamaindex-agent/app/components/ui/chat/use-copy-to-clipboard.tsx (+33 -0)
nextjs-llamaindex-agent/app/components/ui/dialog.tsx (+121 -0)
nextjs-llamaindex-agent/app/components/ui/input.tsx (+25 -0)
nextjs-llamaindex-agent/app/components/ui/lib/utils.ts (+6 -0)
nextjs-llamaindex-agent/app/favicon.ico (+0 -0)

...and 27 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/run-llama/create_llama_projects/pull/27 **Author:** [@thucpn](https://github.com/thucpn) **Created:** 3/29/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/add-nextjs-llamaindex-agent-example` --- ### 📝 Commits (6) - [`4578fc6`](https://github.com/run-llama/create_llama_projects/commit/4578fc6c3c2b51451a81f50e0e952a07814e273a) feat/add-nextjs-llamaindex-agent-example - [`ad62ff1`](https://github.com/run-llama/create_llama_projects/commit/ad62ff1b2b4bb3227692f095c91322e75d6401a7) wiki card - [`6f0b216`](https://github.com/run-llama/create_llama_projects/commit/6f0b21632fce53acb148d492d98c6422c4a098cc) fix: remove engine folder & response wiki card ui - [`bf6005b`](https://github.com/run-llama/create_llama_projects/commit/bf6005ba6b77eb37ca9b1c2afbe277abc2528301) refactor: make createAgentStreamableUI - [`adc173f`](https://github.com/run-llama/create_llama_projects/commit/adc173f179e01b97ba4c6c33610a095d7887d8ad) enhance UI - [`4c84ea5`](https://github.com/run-llama/create_llama_projects/commit/4c84ea5c952b45b895069a6bb537c7ed0d13d22d) fix: revert mock ### 📊 Changes **47 files changed** (+6354 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `nextjs-llamaindex-agent/.eslintrc.json` (+8 -0) ➕ `nextjs-llamaindex-agent/.gitignore` (+38 -0) ➕ `nextjs-llamaindex-agent/Dockerfile` (+16 -0) ➕ `nextjs-llamaindex-agent/README.md` (+38 -0) ➕ `nextjs-llamaindex-agent/app/components/chat-section.tsx` (+12 -0) ➕ `nextjs-llamaindex-agent/app/components/header.tsx` (+28 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/button.tsx` (+56 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/chat/chat-avatar.tsx` (+35 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/chat/chat-input.tsx` (+57 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/chat/chat-loading.tsx` (+9 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/chat/chat-message.tsx` (+21 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/chat/chat-messages.tsx` (+34 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/chat/codeblock.tsx` (+139 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/chat/index.ts` (+5 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/chat/markdown.tsx` (+59 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/chat/use-copy-to-clipboard.tsx` (+33 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/dialog.tsx` (+121 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/input.tsx` (+25 -0) ➕ `nextjs-llamaindex-agent/app/components/ui/lib/utils.ts` (+6 -0) ➕ `nextjs-llamaindex-agent/app/favicon.ico` (+0 -0) _...and 27 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 00:15:24 -05:00
yindo closed this issue 2026-02-16 00:15:24 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/create_llama_projects#30