9f171d3236
Introduces Embedder contract in core:inference with a NoopEmbedder default (zero vector) and wires both Embedder and L3MemoryStore into DefaultRouterFacade. Each ChatTurnEvent emission now embeds the turn content and writes a corresponding L3MemoryEntry, so cross-session memory is captured at the source of truth (the event emission point). InfrastructureModule defaults to NoopEmbedder + InMemoryL3MemoryStore so the system runs without an external embedding model or vector store wired. The TurboVec adapter stays unwired for now; switching to it is a configuration concern (Epic 12 config layer). Also gitignores apps/tui/logs/ (Kotlin TUI runtime logs, pre-Go rewrite).
80 lines
1.3 KiB
Plaintext
80 lines
1.3 KiB
Plaintext
.idea/
|
|
auto-import.
|
|
*.iml
|
|
*.ipr
|
|
cmake-build-*/
|
|
*.iws
|
|
out/
|
|
.idea_modules/
|
|
atlassian-ide-plugin.xml
|
|
com_crashlytics_export_strings.xml
|
|
crashlytics.properties
|
|
crashlytics-build.properties
|
|
fabric.properties
|
|
http-client.private.env.json
|
|
.DS_Store
|
|
/confluence/target
|
|
/dependencies/repo
|
|
/android.tests.dependencies
|
|
/dependencies/android.tests.dependencies
|
|
/dist
|
|
/local
|
|
/gh-pages
|
|
/ideaSDK
|
|
/clionSDK
|
|
/android-studio/sdk
|
|
/tmp
|
|
/intellij
|
|
workspace.xml
|
|
*.versionsBackup
|
|
/idea/testData/debugger/tinyApp/classes*
|
|
/jps-plugin/testData/kannotator
|
|
/js/js.translator/testData/out/
|
|
/js/js.translator/testData/out-min/
|
|
/js/js.translator/testData/out-pir/
|
|
.gradle/
|
|
build/
|
|
!**/src/**/build
|
|
!**/test/**/build
|
|
!**/tests-gen/**/build
|
|
!**/testData/**/*.iml
|
|
node_modules/
|
|
.rpt2_cache/
|
|
local.properties
|
|
buildSrcTmp/
|
|
distTmp/
|
|
outTmp/
|
|
/test.output
|
|
/kotlin-native/dist
|
|
kotlin-ide/
|
|
.kotlin/
|
|
.teamcity/
|
|
.npmrc
|
|
**/.junie/memory/
|
|
.claude/
|
|
.claudeignore
|
|
.ctx_cache.pkl
|
|
.opencode/
|
|
CLAUDE.md
|
|
scripts/
|
|
test_output.log
|
|
**/xcuserdata
|
|
.test-federation.*
|
|
bin/
|
|
/docs/future/
|
|
/docs/plans/
|
|
/docs/refactor.md
|
|
/kls_database.db
|
|
/code-analysis/
|
|
/.infra/sonarqube/docker-compose.yml
|
|
/logs
|
|
log4j2.properties
|
|
/docs/specs/
|
|
correx-tui.log
|
|
current.log
|
|
# Go TUI build output
|
|
apps/tui-go/bin/
|
|
|
|
# TUI runtime logs (Kotlin TUI, pre-Go rewrite)
|
|
apps/tui/logs/
|