-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
chatbot component tweaks #8594
chatbot component tweaks #8594
Conversation
🪼 branch checks and previews
Install Gradio from this PR pip install https://gradio-builds.s3.amazonaws.com/4dcfdac49485babe06fb18613b33b09d27b8fa35/gradio-4.36.1-py3-none-any.whl Install Gradio Python Client from this PR pip install "gradio-client @ git+https://github.com/gradio-app/gradio@4dcfdac49485babe06fb18613b33b09d27b8fa35#subdirectory=client/python" Install Gradio JS Client from this PR npm install https://gradio-builds.s3.amazonaws.com/4dcfdac49485babe06fb18613b33b09d27b8fa35/gradio-client-1.1.1.tgz |
🦄 change detectedThis Pull Request includes changes to the following packages.
With the following changelog entry.
Maintainers or the PR author can modify the PR title to modify this entry.
|
js/chatbot/shared/ChatBot.svelte
Outdated
} | ||
.bubble-gap { | ||
gap: calc(var(--spacing-xxl) + var(--spacing-lg)); | ||
} | ||
.message-wrap | ||
/* .message-wrap |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need to remove this code?
js/chatbot/shared/Copy.svelte
Outdated
width: 12px; | ||
height: 12px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these action buttons are too small 😬 see here. We should make it slightly larger and just make sure that the target inc. padding is 24x24. It's not too bad in desktop, but I definitely notice the small icon size in mobile.
* remove redundant like/dislike icons
…nto 8544-chatbot
const _plot = Plotly.react( | ||
plot_div, | ||
plotObj.data, | ||
plotObj.layout, | ||
plotObj.config |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is _plot
being used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. This was from when I was trying to figure something out I think.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks great! thanks for making these improvements @pngwn!
Just catching up on some PRs. Thanks for adding all these fixes @pngwn ! |
Description
Please include a concise summary, in clear English, of the changes in this pull request. If it closes an issue, please mention it here.
Closes #8544
🎯 PRs Should Target Issues
Before your create a PR, please check to see if there is an existing issue for this change. If not, please create an issue before you create this PR, unless the fix is very small.
Not adhering to this guideline will result in the PR being closed.
Tests
PRs will only be merged if tests pass on CI. To run the tests locally, please set up your Gradio environment locally and run the tests:
bash scripts/run_all_tests.sh
You may need to run the linters:
bash scripts/format_backend.sh
andbash scripts/format_frontend.sh