24 lines
576 B
TypeScript
24 lines
576 B
TypeScript
/**
|
|
* Research-Swarm Integration
|
|
*
|
|
* Distributed research graph DB
|
|
* Integration with research-swarm package
|
|
*
|
|
* Features:
|
|
* - Collaborative research agents
|
|
* - Literature review aggregation
|
|
* - Hypothesis generation and testing
|
|
* - Knowledge synthesis
|
|
*/
|
|
declare const _default: {
|
|
description: string;
|
|
run(config: any): Promise<{
|
|
papers: number;
|
|
hypotheses: number;
|
|
experiments: number;
|
|
synthesizedKnowledge: number;
|
|
totalTime: number;
|
|
}>;
|
|
};
|
|
export default _default;
|
|
//# sourceMappingURL=research-swarm.d.ts.map
|