[PR #159] [MERGED] fix(useWorkflow): handle incomplete chunk and support tool call transformation #168

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

📋 Pull Request Information

Original PR: https://github.com/run-llama/chat-ui/pull/159
Author: @thucpn
Created: 7/4/2025
Status: Merged
Merged: 7/9/2025
Merged by: @thucpn

Base: mainHead: tp/handle-fail-to-parse-chunk


📝 Commits (10+)

  • 6a4e264 fix: handle fail to parse chunk
  • 896039a add test
  • cd11632 Create gorgeous-lies-develop.md
  • e475076 support transforming toolcall and toolcalloutput
  • 13f50d7 raw node to source node
  • 0939d21 fileServerUrl option for useChatWorkflow
  • 0d7d8c9 add normal agentic rag example
  • 73a1dc0 missing file
  • 8c6fe6c return slug url
  • f853fc1 update pnpm workspace

📊 Changes

37 files changed (+1580 additions, -37 deletions)

View changed files

.changeset/gorgeous-lies-develop.md (+5 -0)
examples/llamadeploy/agentic-rag-cloud/.gitignore (+5 -0)
examples/llamadeploy/agentic-rag-cloud/README.md (+106 -0)
examples/llamadeploy/agentic-rag-cloud/llama_deploy.yml (+24 -0)
examples/llamadeploy/agentic-rag-cloud/pyproject.toml (+54 -0)
examples/llamadeploy/agentic-rag-cloud/src/citation.py (+106 -0)
examples/llamadeploy/agentic-rag-cloud/src/generate.py (+65 -0)
examples/llamadeploy/agentic-rag-cloud/src/index.py (+146 -0)
examples/llamadeploy/agentic-rag-cloud/src/query.py (+47 -0)
examples/llamadeploy/agentic-rag-cloud/src/service.py (+74 -0)
examples/llamadeploy/agentic-rag-cloud/src/settings.py (+14 -0)
examples/llamadeploy/agentic-rag-cloud/src/workflow.py (+35 -0)
examples/llamadeploy/agentic-rag-cloud/ui/data/101.pdf (+0 -0)
examples/llamadeploy/agentic-rag-cloud/ui/index.ts (+10 -0)
examples/llamadeploy/agentic-rag-cloud/ui/layout/header.tsx (+40 -0)
examples/llamadeploy/agentic-rag-cloud/ui/package.json (+18 -0)
examples/llamadeploy/agentic-rag/.gitignore (+5 -0)
examples/llamadeploy/agentic-rag/README.md (+106 -0)
examples/llamadeploy/agentic-rag/llama_deploy.yml (+24 -0)
examples/llamadeploy/agentic-rag/pyproject.toml (+54 -0)

...and 17 more files

📄 Description

Fix: https://github.com/run-llama/create-llama/pull/701/files#r2184787076
And fix: https://github.com/run-llama/chat-ui/issues/160


🔄 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/159 **Author:** [@thucpn](https://github.com/thucpn) **Created:** 7/4/2025 **Status:** ✅ Merged **Merged:** 7/9/2025 **Merged by:** [@thucpn](https://github.com/thucpn) **Base:** `main` ← **Head:** `tp/handle-fail-to-parse-chunk` --- ### 📝 Commits (10+) - [`6a4e264`](https://github.com/run-llama/chat-ui/commit/6a4e2645198a1a9c006370b883fae2ab5cae4571) fix: handle fail to parse chunk - [`896039a`](https://github.com/run-llama/chat-ui/commit/896039a9c2a30242d57ce4c4c3f1aec31458da01) add test - [`cd11632`](https://github.com/run-llama/chat-ui/commit/cd11632ff512db52d57872b759793373408df1d2) Create gorgeous-lies-develop.md - [`e475076`](https://github.com/run-llama/chat-ui/commit/e475076ddef9b839bcc62bb287bc5feeda4fa2e7) support transforming toolcall and toolcalloutput - [`13f50d7`](https://github.com/run-llama/chat-ui/commit/13f50d7d3517f193053bc6d8e8c4076ab7cc7269) raw node to source node - [`0939d21`](https://github.com/run-llama/chat-ui/commit/0939d2123841f74b827b56965170d49b16fd80b2) fileServerUrl option for useChatWorkflow - [`0d7d8c9`](https://github.com/run-llama/chat-ui/commit/0d7d8c9f8857d796620fff1ab1875e3a1e77e17b) add normal agentic rag example - [`73a1dc0`](https://github.com/run-llama/chat-ui/commit/73a1dc0cb3a6a66b94a99d208abf857b5a0b5c7c) missing file - [`8c6fe6c`](https://github.com/run-llama/chat-ui/commit/8c6fe6cccd2bf3bb12b2ca486f299b32f5349de0) return slug url - [`f853fc1`](https://github.com/run-llama/chat-ui/commit/f853fc1bca8301ebd01d4a630c5bf5d08998c14d) update pnpm workspace ### 📊 Changes **37 files changed** (+1580 additions, -37 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/gorgeous-lies-develop.md` (+5 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/.gitignore` (+5 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/README.md` (+106 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/llama_deploy.yml` (+24 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/pyproject.toml` (+54 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/src/citation.py` (+106 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/src/generate.py` (+65 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/src/index.py` (+146 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/src/query.py` (+47 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/src/service.py` (+74 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/src/settings.py` (+14 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/src/workflow.py` (+35 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/ui/data/101.pdf` (+0 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/ui/index.ts` (+10 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/ui/layout/header.tsx` (+40 -0) ➕ `examples/llamadeploy/agentic-rag-cloud/ui/package.json` (+18 -0) ➕ `examples/llamadeploy/agentic-rag/.gitignore` (+5 -0) ➕ `examples/llamadeploy/agentic-rag/README.md` (+106 -0) ➕ `examples/llamadeploy/agentic-rag/llama_deploy.yml` (+24 -0) ➕ `examples/llamadeploy/agentic-rag/pyproject.toml` (+54 -0) _...and 17 more files_ </details> ### 📄 Description Fix: https://github.com/run-llama/create-llama/pull/701/files#r2184787076 And fix: https://github.com/run-llama/chat-ui/issues/160 --- <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:26 -05:00
yindo closed this issue 2026-02-16 03:15:26 -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#168