Skip to content

Go SDK Release 🐹

Choose a tag to compare

@rahuldass19 rahuldass19 released this 11 Jan 10:12

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