-
Notifications
You must be signed in to change notification settings - Fork 183
add GenUIWorkflow for generating UI components from workflow events #549
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
42d3fd3
feat: add GenUIWorkflow for generating UI components from workflow ev…
leehuwuj 0f8dd5e
feat: enhance GenUIWorkflow to support event handling and UI generation
leehuwuj c5dbcd4
add cache, split code
leehuwuj 910e6e5
use gemini model
leehuwuj d9e2752
refactor: update GenUIWorkflow to use Anthropic model and add pre-run…
leehuwuj cd36b40
feat: introduce PlanningEvent and enhance GenUIWorkflow for improved …
leehuwuj fa406b1
Merge remote-tracking branch 'origin/main' into lee/gen-ui
leehuwuj 37f383f
feat: add gen ui to llamaindexserver
leehuwuj ab40edd
refactor: remove unused gen_ui.py file
leehuwuj de80741
simplify
leehuwuj 30c1fb8
update for tailwindcss
leehuwuj d4794ad
simplify code and add document
leehuwuj 762a56e
refine text
leehuwuj 9e0b15d
feat: add UIEvent model and update exports in server module
leehuwuj f50c1b2
use default UIEvent
leehuwuj 0ac8def
fix wrong model, update template
leehuwuj 63fc82d
add missing doc
leehuwuj 5872176
fix linting
leehuwuj b5e9150
revert change on template
leehuwuj 8558e9f
fix mypy
leehuwuj cde2eaf
disable e2e for the change from llama-index-server
leehuwuj 68edc43
remove unused script entry from pyproject.toml and refine UI notice t…
leehuwuj 38249a1
update workflow, bump chat ui
leehuwuj e0923ea
Refine GenUIWorkflow documentation and improve code structure notes; …
leehuwuj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from .api.models import UIEvent | ||
from .server import LlamaIndexServer, UIConfig | ||
|
||
__all__ = ["LlamaIndexServer", "UIConfig"] | ||
__all__ = ["LlamaIndexServer", "UIConfig", "UIEvent"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
import requests | ||
|
||
CHAT_UI_VERSION = "0.1.0" | ||
CHAT_UI_VERSION = "0.1.1" | ||
|
||
|
||
def download_chat_ui( | ||
|
Empty file.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.