Skip to content
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

Fixture - Slider Number #346

Merged
merged 45 commits into from
Feb 25, 2025
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
04cd514
Update model methods to run background task when creating the endpoin…
shincap8 Jan 17, 2025
d86ae16
Handle error from Runpod, URL inference from yaml file
shincap8 Jan 17, 2025
8794693
Update backend/app/api/endpoints/base/score.py
shincap8 Jan 17, 2025
fc08634
Rename method
shincap8 Jan 17, 2025
aa0f022
Merge with cloud branch
shincap8 Jan 17, 2025
971b986
rename endpoint
shincap8 Jan 17, 2025
476d4e4
Print background tasks and correct typo
shincap8 Jan 21, 2025
9ed5f20
resolve merge conflict
shincap8 Jan 21, 2025
326acbb
Merge branch 'main' of /~https://github.com/mlcommons/dynabench into Fe…
shincap8 Jan 22, 2025
68f126e
Correct typos and correct schemas
shincap8 Jan 22, 2025
c2638b9
model uid
shincap8 Jan 22, 2025
605d8fb
merge with main
shincap8 Jan 22, 2025
0d74498
remove c
shincap8 Jan 22, 2025
9c6f088
Merge branch 'main' of /~https://github.com/mlcommons/dynabench into Fe…
shincap8 Jan 22, 2025
ac0b90b
Merge branch 'main' of /~https://github.com/mlcommons/dynabench into Fe…
shincap8 Jan 22, 2025
22fe4f2
Merge branch 'main' of /~https://github.com/mlcommons/dynabench into Fe…
shincap8 Jan 22, 2025
6afb9b1
ad ta to metada (facepalm)
shincap8 Jan 23, 2025
a9fea53
add update publish status to make change the publish state of the models
shincap8 Jan 23, 2025
5bb2a9b
Merge branch 'main' of /~https://github.com/mlcommons/dynabench into Fe…
shincap8 Jan 31, 2025
72a44d6
change order of background tasks
shincap8 Jan 31, 2025
a314b98
Merge branch 'main' of /~https://github.com/mlcommons/dynabench into Fe…
shincap8 Jan 31, 2025
255ea26
print instead of raising error for the second background task to run
shincap8 Jan 31, 2025
c97de75
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Jan 31, 2025
e498a08
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 4, 2025
0276241
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 5, 2025
5d8a9ba
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 6, 2025
908e846
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 6, 2025
a750095
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 10, 2025
54907ed
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 11, 2025
acb4cd0
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 19, 2025
3e040d0
New components required by ps-on-ai challenge
shincap8 Feb 20, 2025
a5173d4
rename component
shincap8 Feb 20, 2025
be4e0e9
Merge branch 'main' of /~https://github.com/mlcommons/dynabench into Fe…
shincap8 Feb 20, 2025
007e512
New Big components and update chatbot
shincap8 Feb 20, 2025
7170f39
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 20, 2025
387db63
add style to be included from the beginning
shincap8 Feb 20, 2025
248fb97
Fix for the rabio button selection to stick and allow the input text …
shincap8 Feb 20, 2025
361b96b
add more time to generate_text
shincap8 Feb 20, 2025
a5d0c79
remove print
shincap8 Feb 20, 2025
68694ed
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 20, 2025
ef4b40f
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 21, 2025
bc93c84
Merge branch 'main' of /~https://github.com/mlcommons/dynabench
shincap8 Feb 21, 2025
982aff1
Add number to slider
shincap8 Feb 24, 2025
927b4b5
Merge branch 'main' of /~https://github.com/mlcommons/dynabench into Fi…
shincap8 Feb 25, 2025
0b4782b
simplify Input change
shincap8 Feb 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ const SimpleSliderNoExplanation: FC<SimpleSliderNoExplanationProps> = ({

const handleChange = (value: string) => {
setShowTooltip(true);
const updatedResponses = { instructions: value };

setelectedValue(value);
onInputChange(
{
[field_name_for_the_model]: updatedResponses,
[field_name_for_the_model]: value,
},
metadata
);
Expand Down
Loading