mirror of
https://github.com/ruvnet/RuView
synced 2026-07-30 18:41:42 +00:00
4b1005524e
- Add 154 missing vendor files (gitignore was filtering them) - vendor/midstream: 564 files (was 561) - vendor/sublinear-time-solver: 1190 files (was 1039) - Add ESP32 edge processing (ADR-039): presence, vitals, fall detection - Add WASM programmable sensing (ADR-040/041) with wasm3 runtime - Add firmware CI workflow (.github/workflows/firmware-ci.yml) - Add wifi-densepose-wasm-edge crate for edge WASM modules - Update sensing server, provision.py, UI components Co-Authored-By: claude-flow <ruv@ruv.net>
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
/**
|
|
* ReasonGraph Research Interface
|
|
* Web-based research platform for scientific discovery acceleration
|
|
* Provides intuitive access to advanced reasoning capabilities
|
|
*/
|
|
import { ReasoningResult } from './advanced-reasoning-engine.js';
|
|
export interface ResearchProject {
|
|
id: string;
|
|
name: string;
|
|
domain: string;
|
|
questions: string[];
|
|
results: ReasoningResult[];
|
|
created_at: number;
|
|
updated_at: number;
|
|
status: 'active' | 'completed' | 'paused';
|
|
breakthrough_count: number;
|
|
}
|
|
export interface ResearchSession {
|
|
session_id: string;
|
|
user_id: string;
|
|
projects: ResearchProject[];
|
|
settings: {
|
|
default_creativity_level: number;
|
|
enable_temporal_advantage: boolean;
|
|
enable_consciousness_verification: boolean;
|
|
default_reasoning_depth: number;
|
|
};
|
|
}
|
|
export declare class ReasonGraphResearchInterface {
|
|
private reasoningEngine;
|
|
private app;
|
|
private sessions;
|
|
private projects;
|
|
constructor();
|
|
private setupMiddleware;
|
|
private setupRoutes;
|
|
private logResearchQuery;
|
|
start(port?: number): Promise<void>;
|
|
stop(): Promise<void>;
|
|
}
|
|
export default ReasonGraphResearchInterface;
|