[PR #30] [MERGED] feat: add llama3 example #32

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

📋 Pull Request Information

Original PR: https://github.com/run-llama/create_llama_projects/pull/30
Author: @marcusschiesser
Created: 4/19/2024
Status: Merged
Merged: 4/19/2024
Merged by: @yisding

Base: mainHead: ms/add-nextjs-llama3


📝 Commits (1)

📊 Changes

54 files changed (+9364 additions, -0 deletions)

View changed files

📝 README.md (+1 -0)
nextjs-llama3/.devcontainer/devcontainer.json (+46 -0)
nextjs-llama3/.eslintrc.json (+7 -0)
nextjs-llama3/.gitignore (+35 -0)
nextjs-llama3/README.md (+45 -0)
nextjs-llama3/app/api/chat/engine/chat.ts (+18 -0)
nextjs-llama3/app/api/chat/engine/generate.ts (+38 -0)
nextjs-llama3/app/api/chat/engine/index.ts (+22 -0)
nextjs-llama3/app/api/chat/engine/loader.ts (+9 -0)
nextjs-llama3/app/api/chat/engine/settings.ts (+23 -0)
nextjs-llama3/app/api/chat/engine/shared.ts (+1 -0)
nextjs-llama3/app/api/chat/llamaindex-stream.ts (+98 -0)
nextjs-llama3/app/api/chat/route.ts (+84 -0)
nextjs-llama3/app/components/chat-section.tsx (+39 -0)
nextjs-llama3/app/components/header.tsx (+28 -0)
nextjs-llama3/app/components/ui/README.md (+1 -0)
nextjs-llama3/app/components/ui/button.tsx (+56 -0)
nextjs-llama3/app/components/ui/chat/chat-actions.tsx (+28 -0)
nextjs-llama3/app/components/ui/chat/chat-avatar.tsx (+25 -0)
nextjs-llama3/app/components/ui/chat/chat-image.tsx (+17 -0)

...and 34 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/30 **Author:** [@marcusschiesser](https://github.com/marcusschiesser) **Created:** 4/19/2024 **Status:** ✅ Merged **Merged:** 4/19/2024 **Merged by:** [@yisding](https://github.com/yisding) **Base:** `main` ← **Head:** `ms/add-nextjs-llama3` --- ### 📝 Commits (1) - [`1cf3e2e`](https://github.com/run-llama/create_llama_projects/commit/1cf3e2e720220ed2930fdf00bf77744d78f44df7) feat: add llama3 example ### 📊 Changes **54 files changed** (+9364 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) ➕ `nextjs-llama3/.devcontainer/devcontainer.json` (+46 -0) ➕ `nextjs-llama3/.eslintrc.json` (+7 -0) ➕ `nextjs-llama3/.gitignore` (+35 -0) ➕ `nextjs-llama3/README.md` (+45 -0) ➕ `nextjs-llama3/app/api/chat/engine/chat.ts` (+18 -0) ➕ `nextjs-llama3/app/api/chat/engine/generate.ts` (+38 -0) ➕ `nextjs-llama3/app/api/chat/engine/index.ts` (+22 -0) ➕ `nextjs-llama3/app/api/chat/engine/loader.ts` (+9 -0) ➕ `nextjs-llama3/app/api/chat/engine/settings.ts` (+23 -0) ➕ `nextjs-llama3/app/api/chat/engine/shared.ts` (+1 -0) ➕ `nextjs-llama3/app/api/chat/llamaindex-stream.ts` (+98 -0) ➕ `nextjs-llama3/app/api/chat/route.ts` (+84 -0) ➕ `nextjs-llama3/app/components/chat-section.tsx` (+39 -0) ➕ `nextjs-llama3/app/components/header.tsx` (+28 -0) ➕ `nextjs-llama3/app/components/ui/README.md` (+1 -0) ➕ `nextjs-llama3/app/components/ui/button.tsx` (+56 -0) ➕ `nextjs-llama3/app/components/ui/chat/chat-actions.tsx` (+28 -0) ➕ `nextjs-llama3/app/components/ui/chat/chat-avatar.tsx` (+25 -0) ➕ `nextjs-llama3/app/components/ui/chat/chat-image.tsx` (+17 -0) _...and 34 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:25 -05:00
yindo closed this issue 2026-02-16 00:15:25 -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#32