Omarrran's picture
Add Koshur OCRv6 model card, source, artifacts, and core checkpoints
8207382 verified
|
Raw
History Blame Contribute Delete
1.77 kB

PaddleOCR official API SDKs

English | 简体中文

This directory contains source-adjacent maintainer files for the PaddleOCR official API SDKs. The SDKs call hosted PaddleOCR official API services; they do not run local PaddleOCR inference or load local models.

The official user documentation:

Maintainer Files

File Purpose
typescript/README.md Package-level README for the TypeScript SDK.
go/README.md Package-level README for the Go SDK.

The Python SDK is part of the main paddleocr package.

Package Locations

Language Source location User docs
Python ../paddleocr Python SDK
TypeScript typescript TypeScript SDK
Go go Go SDK

Validation

Run these from the PaddleOCR repo root directory:

# Python
python -m pytest tests/api_client/

# TypeScript
cd api_sdk/typescript
npm run lint
npm test

# Go
cd ../go
go test ./...