added qdrant config

This commit is contained in:
Rob Colbert 2026-05-19 03:53:21 -04:00
parent f539f91018
commit e2cefc2617

View File

@ -40,6 +40,10 @@ export interface GadgetCodeConfig {
host: string;
database: string;
};
qdrant: {
host: string;
collection: string;
};
redis: {
host?: string;
port?: number;
@ -114,7 +118,7 @@ export interface GadgetCodeConfig {
audios?: string;
};
};
}
}
/**
* Gadget Drone Worker Configuration
@ -164,7 +168,7 @@ export interface GadgetTasksConfig {
password?: string;
keyPrefix?: string;
};
concurrency?: number; // max concurrent tasks, default 1 (sequential)
concurrency?: number; // max concurrent tasks, default 1 (sequential)
logging?: {
console?: {
enabled?: boolean;