QWED v2.3.1 adds the official Go SDK with zero external dependencies and full test coverage.
π What's New
Go SDK - Production Ready
- β Verifier interface for easy mocking in tests
- β Zero external dependencies (stdlib only)
- β Context support on all methods
- β 15+ unit tests with mock server
- β CI workflow with race detection
π¦ Installation
Go:
go get github.com/QWED-AI/qwed-verification/sdk-go
Python:
pip install qwed
TypeScript:
npm install @qwed-ai/sdk
π§ Available Methods
- VerifyMath() : Mathematical expressions
- VerifyLogic() : Z3 logic verification
- VerifyCode() : Code security scanning
- VerifySQL() : SQL validation
- VerifyFact() : Fact checking
- VerifyBatch() : Batch processing
π Quick Example
import qwed "github.com/QWED-AI/qwed-verification/sdk-go"
client := qwed.NewClient("your-api-key")
result, _ := client.VerifyMath(ctx, "2+2=4")
fmt.Println(result.Verified) // true
π Documentation
Full Changelog: v2.3.0...v2.3.1