mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-26 07:35:44 -03:00
feat: refactor model API structure to support specific model types with dedicated API clients for Checkpoints, LoRAs, and Embeddings
refactor: consolidate model API client creation into a factory function for better maintainability feat: implement move operations for LoRAs and handle unsupported operations for Checkpoints and Embeddings
This commit is contained in:
30
static/js/api/embeddingApi.js
Normal file
30
static/js/api/embeddingApi.js
Normal file
@@ -0,0 +1,30 @@
|
||||
import { BaseModelApiClient } from './baseModelApi.js';
|
||||
import { showToast } from '../utils/uiHelpers.js';
|
||||
|
||||
/**
|
||||
* Embedding-specific API client
|
||||
*/
|
||||
export class EmbeddingApiClient extends BaseModelApiClient {
|
||||
/**
|
||||
* Move a single embedding to target path
|
||||
*/
|
||||
async moveSingleModel(filePath, targetPath) {
|
||||
if (filePath.substring(0, filePath.lastIndexOf('/')) === targetPath) {
|
||||
showToast('Embedding is already in the selected folder', 'info');
|
||||
return null;
|
||||
}
|
||||
|
||||
// TODO: Implement embedding move endpoint when available
|
||||
showToast('Moving embeddings is not yet implemented', 'info');
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Move multiple embeddings to target path
|
||||
*/
|
||||
async moveBulkModels(filePaths, targetPath) {
|
||||
// TODO: Implement embedding bulk move endpoint when available
|
||||
showToast('Moving embeddings is not yet implemented', 'info');
|
||||
return [];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user