Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Commit 86f33b8

Browse files
Copilotclduab11
andcommitted
Major cleanup: Move test files and remove obsolete demo code
Co-authored-by: clduab11 <185000089+clduab11@users.noreply.github.com>
1 parent 1ac8606 commit 86f33b8

26 files changed

+15
-233
lines changed

src/adapters/unified-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1118,7 +1118,7 @@ export class UnifiedAPI extends EventEmitter {
11181118
async adaptStreamQuality(
11191119
sessionId: string,
11201120
streamId: string,
1121-
targetQuality?: any,
1121+
_targetQuality?: any,
11221122
): Promise<boolean> {
11231123
if (!this.streamingAPI) {
11241124
return false;

src/agents/research-coordinator.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -970,48 +970,48 @@ export class ResearchCoordinator extends EventEmitter {
970970
}
971971

972972
// Additional placeholder methods would be implemented with actual AI logic
973-
private async suggestMethodology(params: any): Promise<string> {
973+
private async suggestMethodology(_params: any): Promise<string> {
974974
return "Experimental design with randomized controlled trial";
975975
}
976-
private async predictOutcomes(params: any): Promise<string[]> {
976+
private async predictOutcomes(_params: any): Promise<string[]> {
977977
return ["Positive correlation expected", "Effect size: medium"];
978978
}
979-
private async defineSucessCriteria(params: any): Promise<string[]> {
979+
private async defineSucessCriteria(_params: any): Promise<string[]> {
980980
return ["p < 0.05", "Effect size > 0.3"];
981981
}
982-
private async assessHypothesisConfidence(params: any): Promise<number> {
982+
private async assessHypothesisConfidence(_params: any): Promise<number> {
983983
return 0.75;
984984
}
985985
private async addToKnowledgeGraph(
986-
hypothesis: ResearchHypothesis,
987-
type: string,
986+
_hypothesis: ResearchHypothesis,
987+
_type: string,
988988
): Promise<void> {
989989
/* Implementation */
990990
}
991991
private async initializeValidationFramework(
992-
hypothesis: ResearchHypothesis,
992+
_hypothesis: ResearchHypothesis,
993993
): Promise<void> {
994994
/* Implementation */
995995
}
996996

997997
// More placeholder methods...
998998
private async selectResearchDesign(
999-
hypothesis: ResearchHypothesis,
999+
_hypothesis: ResearchHypothesis,
10001000
): Promise<string> {
10011001
return "Randomized Controlled Trial";
10021002
}
10031003
private async calculateSampleSize(
1004-
hypothesis: ResearchHypothesis,
1004+
_hypothesis: ResearchHypothesis,
10051005
): Promise<number> {
10061006
return 100;
10071007
}
10081008
private async identifyControls(
1009-
hypothesis: ResearchHypothesis,
1009+
_hypothesis: ResearchHypothesis,
10101010
): Promise<string[]> {
10111011
return ["Placebo control", "Time control"];
10121012
}
10131013
private async selectStatisticalTests(
1014-
hypothesis: ResearchHypothesis,
1014+
_hypothesis: ResearchHypothesis,
10151015
): Promise<string[]> {
10161016
return ["t-test", "ANOVA"];
10171017
}
@@ -1067,8 +1067,8 @@ export class ResearchCoordinator extends EventEmitter {
10671067
}
10681068

10691069
private async searchSingleDatabase(
1070-
db: AcademicDatabase,
1071-
query: any,
1070+
_db: AcademicDatabase,
1071+
_query: any,
10721072
): Promise<ResearchPaper[]> {
10731073
// Implementation would make actual API calls to each database
10741074
// This is a simplified mock implementation

src/memory/demo-sqlite-fallback.ts

Lines changed: 0 additions & 218 deletions
This file was deleted.

src/agentspace/__tests__/AgentSpaceIntegration.test.ts renamed to tests/agentspace/__tests__/AgentSpaceIntegration.test.ts

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Smart Routing Performance Benchmark
33
*
44
* Standalone benchmark script to validate <75ms routing overhead
5-
* Run with: npx ts-node src/core/__tests__/routing-benchmark.ts
5+
* Run with: npx ts-node tests/core/__tests__/routing-benchmark.ts
66
*/
77

88
import { ModelRouter, RoutingDecision } from "../model-router.js";
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/protocols/a2a/consensus/__tests__/byzantine-consensus.test.ts renamed to tests/protocols/a2a/consensus/__tests__/byzantine-consensus.test.ts

File renamed without changes.

0 commit comments

Comments
 (0)