mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
345 B
13 lines
345 B
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type VectorList struct {
|
|
gorm.Model
|
|
Name string `json:"name"`
|
|
FilePath string `json:"file_path"`
|
|
Engine string `json:"engine"`
|
|
EmbeddingUrl string `json:"embedding_url"`
|
|
EmbeddingApiKey string `json:"embedding_api_key"`
|
|
EmbeddingModel string `json:"embedding_model"`
|
|
}
|
|
|