[PR #473] [MERGED] add LlamaCloud support for reflex template #530

Closed
opened 2026-02-15 20:15:11 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/create-llama/pull/473
Author: @leehuwuj
Created: 12/25/2024
Status: Merged
Merged: 12/26/2024
Merged by: @marcusschiesser

Base: mainHead: fix/advanced-question


📝 Commits (5)

  • a2516f7 add LlamaCloud support for reflex template
  • 23654e4 change agents to usecase
  • 412945e add changsets
  • 3e5e361 fix wrong question value
  • 681d08f add asking LlamaCloud service in simple question

📊 Changes

14 files changed (+490 additions, -103 deletions)

View changed files

.changeset/famous-ways-give.md (+5 -0)
.changeset/green-melons-thank.md (+5 -0)
📝 create-app.ts (+2 -2)
📝 e2e/shared/multiagent_template.spec.ts (+6 -6)
📝 e2e/shared/reflex_template.spec.ts (+5 -5)
📝 e2e/utils.ts (+4 -4)
📝 helpers/python.ts (+15 -20)
📝 helpers/types.ts (+2 -2)
📝 helpers/typescript.ts (+9 -9)
📝 index.ts (+2 -2)
📝 questions/questions.ts (+61 -25)
📝 questions/simple.ts (+28 -28)
templates/types/reflex/app/api/routers/models.py (+65 -0)
templates/types/reflex/app/services/file.py (+281 -0)

📄 Description

Summary by CodeRabbit

  • New Features

    • Introduced a new "Fullstack python template with Reflex" option for user prompts.
    • Added functionality for handling file uploads and indexing, including a new DocumentFile model and FileService class.
    • Updated command-line interface to use "use case" instead of "agents" for template selection.
    • Expanded user options for selecting use cases in prompts, including "Structured Extractor" and "Contract review."
    • Integrated support for LlamaCloud within Reflex templates.
  • Bug Fixes

    • Clarified user prompts and improved logic for template support.
  • Documentation

    • Enhanced comments for better understanding of template and file handling functionalities.

🔄 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/pull/473 **Author:** [@leehuwuj](https://github.com/leehuwuj) **Created:** 12/25/2024 **Status:** ✅ Merged **Merged:** 12/26/2024 **Merged by:** [@marcusschiesser](https://github.com/marcusschiesser) **Base:** `main` ← **Head:** `fix/advanced-question` --- ### 📝 Commits (5) - [`a2516f7`](https://github.com/run-llama/create-llama/commit/a2516f7db8314d145add44dcbd61145a1a00699f) add LlamaCloud support for reflex template - [`23654e4`](https://github.com/run-llama/create-llama/commit/23654e436fabb13c284a54d9ce0e80a52ce23a85) change agents to usecase - [`412945e`](https://github.com/run-llama/create-llama/commit/412945e5f3314a917ab52f14b6d8f66a464d25bd) add changsets - [`3e5e361`](https://github.com/run-llama/create-llama/commit/3e5e36144a391b8eead93165d843597992f81b8a) fix wrong question value - [`681d08f`](https://github.com/run-llama/create-llama/commit/681d08f41d85f2533bc679c6edd77876092a6fa3) add asking LlamaCloud service in simple question ### 📊 Changes **14 files changed** (+490 additions, -103 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/famous-ways-give.md` (+5 -0) ➕ `.changeset/green-melons-thank.md` (+5 -0) 📝 `create-app.ts` (+2 -2) 📝 `e2e/shared/multiagent_template.spec.ts` (+6 -6) 📝 `e2e/shared/reflex_template.spec.ts` (+5 -5) 📝 `e2e/utils.ts` (+4 -4) 📝 `helpers/python.ts` (+15 -20) 📝 `helpers/types.ts` (+2 -2) 📝 `helpers/typescript.ts` (+9 -9) 📝 `index.ts` (+2 -2) 📝 `questions/questions.ts` (+61 -25) 📝 `questions/simple.ts` (+28 -28) ➕ `templates/types/reflex/app/api/routers/models.py` (+65 -0) ➕ `templates/types/reflex/app/services/file.py` (+281 -0) </details> ### 📄 Description <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced a new "Fullstack python template with Reflex" option for user prompts. - Added functionality for handling file uploads and indexing, including a new `DocumentFile` model and `FileService` class. - Updated command-line interface to use "use case" instead of "agents" for template selection. - Expanded user options for selecting use cases in prompts, including "Structured Extractor" and "Contract review." - Integrated support for LlamaCloud within Reflex templates. - **Bug Fixes** - Clarified user prompts and improved logic for template support. - **Documentation** - Enhanced comments for better understanding of template and file handling functionalities. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --- <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-15 20:15:11 -05:00
yindo closed this issue 2026-02-15 20:15:11 -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#530