[PR #140] [MERGED] feat: useChatWorkflow #154

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

📋 Pull Request Information

Original PR: https://github.com/run-llama/chat-ui/pull/140
Author: @thucpn
Created: 6/19/2025
Status: Merged
Merged: 6/25/2025
Merged by: @marcusschiesser

Base: mainHead: tp/use-chat-workflow


📝 Commits (10+)

📊 Changes

55 files changed (+2028 additions, -98 deletions)

View changed files

.changeset/grumpy-spies-crash.md (+5 -0)
📝 docs/chat-ui/hooks.mdx (+197 -21)
examples/llama-deploy/README.md (+0 -63)
📝 examples/llamadeploy-chat/.python-version (+0 -0)
examples/llamadeploy-chat/README.md (+55 -0)
examples/llamadeploy-chat/llama_deploy.yml (+38 -0)
📝 examples/llamadeploy-chat/pyproject.toml (+5 -2)
examples/llamadeploy-chat/src/agent_workflow.py (+8 -0)
examples/llamadeploy-chat/src/chat_workflow.py (+113 -0)
examples/llamadeploy-chat/src/cli_workflow.py (+102 -0)
📝 examples/llamadeploy-chat/ui/.eslintrc.js (+1 -0)
📝 examples/llamadeploy-chat/ui/.gitignore (+2 -0)
📝 examples/llamadeploy-chat/ui/app/favicon.ico (+0 -0)
examples/llamadeploy-chat/ui/app/globals.css (+185 -0)
examples/llamadeploy-chat/ui/app/layout.tsx (+25 -0)
examples/llamadeploy-chat/ui/app/page.tsx (+126 -0)
examples/llamadeploy-chat/ui/components.json (+21 -0)
examples/llamadeploy-chat/ui/components/custom/custom-weather.tsx (+60 -0)
examples/llamadeploy-chat/ui/components/custom/human-input.tsx (+92 -0)
examples/llamadeploy-chat/ui/components/ui/select.tsx (+185 -0)

...and 35 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/chat-ui/pull/140 **Author:** [@thucpn](https://github.com/thucpn) **Created:** 6/19/2025 **Status:** ✅ Merged **Merged:** 6/25/2025 **Merged by:** [@marcusschiesser](https://github.com/marcusschiesser) **Base:** `main` ← **Head:** `tp/use-chat-workflow` --- ### 📝 Commits (10+) - [`eff81ee`](https://github.com/run-llama/chat-ui/commit/eff81ee0fe7e851ba3e5e47e111f4c504da392e1) feat: useChatWorkflow - [`3349ea5`](https://github.com/run-llama/chat-ui/commit/3349ea58a8252b72e9f20457f5248faa0a0fa58e) use select instead of switch - [`3100a6d`](https://github.com/run-llama/chat-ui/commit/3100a6daf9e357dc9929ff04d012ef828e52a106) make first version of chat workflow - [`6aa9ad5`](https://github.com/run-llama/chat-ui/commit/6aa9ad57d43b219c162388dec6402cd6950f92b0) short example - [`bad1bfc`](https://github.com/run-llama/chat-ui/commit/bad1bfc5803b608587e0ee7eff4d16d5f55741ad) add comments - [`72deabe`](https://github.com/run-llama/chat-ui/commit/72deabe80adf569d26830f431e3e20a74f5b7890) fix(chat-ui): fix button type is submit by default - [`05b599c`](https://github.com/run-llama/chat-ui/commit/05b599c9d02a7e0973ebd501c616aac6c29f49e5) make stoo work - [`5f10f6b`](https://github.com/run-llama/chat-ui/commit/5f10f6b1c9ca1609f98aa8527657c2b35894dfed) add agent_workflow example - [`0d69560`](https://github.com/run-llama/chat-ui/commit/0d6956051afb4e3493eb5c3a8391cbe26048e7d2) handle reload - [`0681512`](https://github.com/run-llama/chat-ui/commit/06815124c8c2368b23bf1e7c65c66c07ce2c803e) consume AgentStreamEvent ### 📊 Changes **55 files changed** (+2028 additions, -98 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/grumpy-spies-crash.md` (+5 -0) 📝 `docs/chat-ui/hooks.mdx` (+197 -21) ➖ `examples/llama-deploy/README.md` (+0 -63) 📝 `examples/llamadeploy-chat/.python-version` (+0 -0) ➕ `examples/llamadeploy-chat/README.md` (+55 -0) ➕ `examples/llamadeploy-chat/llama_deploy.yml` (+38 -0) 📝 `examples/llamadeploy-chat/pyproject.toml` (+5 -2) ➕ `examples/llamadeploy-chat/src/agent_workflow.py` (+8 -0) ➕ `examples/llamadeploy-chat/src/chat_workflow.py` (+113 -0) ➕ `examples/llamadeploy-chat/src/cli_workflow.py` (+102 -0) 📝 `examples/llamadeploy-chat/ui/.eslintrc.js` (+1 -0) 📝 `examples/llamadeploy-chat/ui/.gitignore` (+2 -0) 📝 `examples/llamadeploy-chat/ui/app/favicon.ico` (+0 -0) ➕ `examples/llamadeploy-chat/ui/app/globals.css` (+185 -0) ➕ `examples/llamadeploy-chat/ui/app/layout.tsx` (+25 -0) ➕ `examples/llamadeploy-chat/ui/app/page.tsx` (+126 -0) ➕ `examples/llamadeploy-chat/ui/components.json` (+21 -0) ➕ `examples/llamadeploy-chat/ui/components/custom/custom-weather.tsx` (+60 -0) ➕ `examples/llamadeploy-chat/ui/components/custom/human-input.tsx` (+92 -0) ➕ `examples/llamadeploy-chat/ui/components/ui/select.tsx` (+185 -0) _...and 35 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 03:15:24 -05:00
yindo closed this issue 2026-02-16 03: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/chat-ui#154