Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
marknguyen1302 committed Aug 7, 2024
1 parent 671a303 commit ec879f3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class DownloadManagerService {
) {
return;
}
console.log('asdfsdf', urlToDestination);

const downloadItems: DownloadItem[] = Object.keys(urlToDestination).map(
(url) => {
const { destination, checksum } = urlToDestination[url];
Expand Down
2 changes: 0 additions & 2 deletions cortex-js/src/usecases/models/models.usecases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,6 @@ export class ModelsUsecases {
}

// Start downloading the model
console.log('Downloading model:', modelId, files);
const toDownloads: Record<
string,
{
Expand Down Expand Up @@ -428,7 +427,6 @@ export class ModelsUsecases {
},
{},
);
console.log('Downloading model:', toDownloads);
return this.downloadManagerService.submitDownloadRequest(
modelId,
modelId,
Expand Down
1 change: 0 additions & 1 deletion cortex-js/src/utils/huggingface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ export async function fetchJanRepoData(
});

data.modelUrl = url;
console.log('Jan repo data:', data);
return data;
}

Expand Down

0 comments on commit ec879f3

Please sign in to comment.