21 lines
375 B
Go
Executable File
21 lines
375 B
Go
Executable File
package config
|
|
|
|
import "github.com/zeromicro/go-zero/zrpc"
|
|
|
|
type Config struct {
|
|
zrpc.RpcServerConf
|
|
DB struct {
|
|
DataSource string
|
|
}
|
|
Ai struct {
|
|
EmbeddingApiUrl string
|
|
EmbeddingApiKey string
|
|
EmbeddingModelName string
|
|
QdrantUrl string
|
|
QdrantApiKey string
|
|
QdrantCollection string
|
|
VectorDimension int
|
|
DailyQuota int64
|
|
}
|
|
}
|