047e2a4070
- build() is now suspend: pipeline runs all stages in fixed order, each gated by level - TOKEN_PRUNE (level 3): TokenPruner interface + LLMLingua-2 sidecar (sidecars/llmlingua) + HttpTokenPruner adapter (fails open if sidecar down); prunes freeform, preserves protected spans, skips tier-0 turns when TIER_SPLIT on - TOME_MERGE (level 8): ToMeMerger collapses near-duplicate freeform turns (Jaccard) - Stage 5 selection: RelevanceScorer + EmbeddingRelevanceScorer (cosine over Embedder); query-conditioned reorder so least-relevant freeform drops first under budget - [orchestration] compression_level + token_pruner_url config, wired in Main - suspend ripple fixed across builder callers/stubs
54 lines
1.3 KiB
Groovy
54 lines
1.3 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'correx'
|
|
|
|
include ':apps:cli'
|
|
include ':apps:server'
|
|
|
|
include ':core:kernel'
|
|
include ':core:events'
|
|
include ':core:transitions'
|
|
include ':core:context'
|
|
include ':core:inference'
|
|
include ':core:artifacts'
|
|
include ':core:artifacts-store'
|
|
include ':core:validation'
|
|
include ':core:approvals'
|
|
include ':core:tools'
|
|
include ':core:toolintent'
|
|
include ':core:router'
|
|
include ':core:sessions'
|
|
include ':core:tasks'
|
|
include ':core:config'
|
|
include ':core:risk'
|
|
include ':core:journal'
|
|
include ':core:critique'
|
|
|
|
include ':infrastructure:persistence'
|
|
include ':infrastructure:inference'
|
|
include ':infrastructure:inference:commons'
|
|
include ':infrastructure:inference:llama_cpp'
|
|
include ':infrastructure:inference:openai_compat'
|
|
include ':infrastructure:router'
|
|
include ':infrastructure:router:turbovec'
|
|
include ':infrastructure:compression'
|
|
include ':infrastructure:tools'
|
|
include ':infrastructure:tools:filesystem'
|
|
include ':infrastructure:workflow'
|
|
include ':infrastructure:artifacts-cas'
|
|
|
|
include ':testing:replay'
|
|
include ':testing:contracts'
|
|
include ':testing:kernel'
|
|
include ':testing:integration'
|
|
include ':testing:fixtures'
|
|
include ':testing:projections'
|
|
include ':testing:transitions'
|
|
include ':testing:approvals'
|
|
include ':testing:deterministic'
|