feat: add model and mmproj paths to ImportOptions

The `ImportOptions` interface was updated to include `modelPath` and `mmprojPath`. These options are required for importing models and multi-modal projects.
This commit is contained in:
Akarshan Biswas 2025-05-29 20:54:38 +05:30 committed by Louis
parent 07d76dc871
commit 267bbbf77b
No known key found for this signature in database
GPG Key ID: 44FA9F4D33C37DE2

View File

@ -137,7 +137,8 @@ export interface chatOptions {
// 7. /import
export interface ImportOptions {
[key: string]: any
modelPath: string
mmprojPath: string
}
export interface importResult {