8a66b9086a
- Started from ac75faa (initial E4B-MarkBase integration)
- Kept Sources/ (all engine code) + Package.swift + .gitignore
- Removed all ad-hoc tests, documentation, scripts, Python files
- Added Tests/00_Unit/ (MathTest, TokenizerTest, SamplerTest)
- Added .gitea/workflows/ci.yaml (build + unit tests + lint)
- Added Scripts/check_resources.sh (memory-aware test runner)
- Added Tests/Manifest.json (resource requirements for all tests)
- Focus: 4-bit quantized models only
13 lines
230 B
Swift
13 lines
230 B
Swift
import Foundation
|
|
|
|
// Entry point — avoids @main conflict with top-level code
|
|
Task {
|
|
do {
|
|
try await SimpleServerApp.main()
|
|
} catch {
|
|
print("Server error: \(error)")
|
|
exit(1)
|
|
}
|
|
}
|
|
dispatchMain()
|