Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Transformerlab App
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
TransformerLab
Transformerlab App
Commits
eb905d22
Commit
eb905d22
authored
2 months ago
by
Tony Salomone
Browse files
Options
Downloads
Patches
Plain Diff
Import Bar and ModelStore share download status so UIs are in sync
parent
206f5baf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/renderer/components/ModelZoo/ImportModelsBar.tsx
+10
-7
10 additions, 7 deletions
src/renderer/components/ModelZoo/ImportModelsBar.tsx
src/renderer/components/ModelZoo/ModelStore.tsx
+5
-2
5 additions, 2 deletions
src/renderer/components/ModelZoo/ModelStore.tsx
with
15 additions
and
9 deletions
src/renderer/components/ModelZoo/ImportModelsBar.tsx
+
10
−
7
View file @
eb905d22
...
...
@@ -13,8 +13,10 @@ import { PlusIcon } from 'lucide-react';
import
*
as
chatAPI
from
'
../../lib/transformerlab-api-sdk
'
;
import
ImportModelsModal
from
'
./ImportModelsModal
'
;
export
default
function
ImportModelsBar
({})
{
const
[
downloadingModel
,
setDownloadingModel
]
=
useState
(
null
);
// Needs to share currentlyDownloading with ModelsStore
// If you start a download on one it should stop you from starting on the other
// Also this is how the import bar tells teh model store to show a download progress bar
export
default
function
ImportModelsBar
({
currentlyDownloading
,
setCurrentlyDownloading
})
{
const
[
importModelsModalOpen
,
setImportModelsModalOpen
]
=
useState
(
false
);
return
(
...
...
@@ -56,7 +58,7 @@ export default function ImportModelsBar({}) {
// only download if valid model is entered
if
(
model
)
{
// this triggers UI changes while download is in progress
setDownloading
Model
(
model
);
set
Currently
Downloading
(
model
);
// Try downloading the model
const
response
=
await
chatAPI
.
downloadModelFromHuggingFace
(
model
);
...
...
@@ -65,17 +67,18 @@ export default function ImportModelsBar({}) {
}
// download complete
setDownloadingModel
(
null
);
setCurrentlyDownloading
(
null
);
//modelGalleryMutate();
}
}
}
startDecorator
=
{
d
ownloading
Model
?
(
currentlyD
ownloading
?
(
<
CircularProgress
size
=
"sm"
thickness
=
{
2
}
/>
)
:
(
""
)
}
>
{
d
ownloading
Model
?
(
{
currentlyD
ownloading
?
(
"
Downloading
"
)
:
(
"
Download 🤗 Model
"
...
...
@@ -83,7 +86,7 @@ export default function ImportModelsBar({}) {
</
Button
>
}
sx
=
{
{
width
:
'
500px
'
}
}
disabled
=
{
d
ownloading
Model
}
disabled
=
{
currentlyD
ownloading
}
/>
</
FormControl
>
<
Button
...
...
This diff is collapsed.
Click to expand it.
src/renderer/components/ModelZoo/ModelStore.tsx
+
5
−
2
View file @
eb905d22
...
...
@@ -117,7 +117,7 @@ export default function ModelStore() {
}
=
useSWR
(
chatAPI
.
Endpoints
.
Models
.
Gallery
(),
fetcher
);
const
{
data
:
modelDownloadProgress
}
=
useSWR
(
currentlyDownloading
&&
jobId
!=
'
-1
'
currentlyDownloading
&&
jobId
&&
jobId
!=
'
-1
'
?
chatAPI
.
Endpoints
.
Jobs
.
Get
(
jobId
)
:
null
,
fetcher
,
...
...
@@ -605,7 +605,10 @@ export default function ModelStore() {
</
tbody
>
</
Table
>
</
Sheet
>
<
ImportModelsBar
/>
<
ImportModelsBar
currentlyDownloading
=
{
currentlyDownloading
}
setCurrentlyDownloading
=
{
setCurrentlyDownloading
}
/>
</
Sheet
>
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment