Skip to content

affectively-ai/wasm-text-processor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@affectively/wasm-text-processor

High-performance WebAssembly text processing utilities written in Rust.

npm version crates.io License: MIT

Features

  • Pattern Matching - Fast regex and string pattern matching
  • Entity Extraction - Extract named entities from text
  • Text Scoring - Score text based on configurable criteria
  • Zero-copy Processing - Efficient memory usage

Installation

npm install @affectively/wasm-text-processor

Quick Start

import init, { match_patterns, extract_entities, score_text } from '@affectively/wasm-text-processor';

await init();

// Pattern matching
const matches = match_patterns(text, patterns);

// Entity extraction
const entities = extract_entities(text);

// Text scoring
const score = score_text(text, criteria);

License

MIT License - see LICENSE for details.


Made with ️ by AFFECTIVELY

About

Pattern matching, entity extraction

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages