{"id":21615992,"url":"https://github.com/pharo-ai/spelling-correction","last_synced_at":"2025-10-07T09:53:19.348Z","repository":{"id":43840291,"uuid":"355894634","full_name":"pharo-ai/spelling-correction","owner":"pharo-ai","description":"A spelling correction algorithm that can identify and fix spelling mistakes","archived":false,"fork":false,"pushed_at":"2025-09-29T11:53:05.000Z","size":187,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-29T13:30:07.978Z","etag":null,"topics":["natural-language-processing","pharo","spelling","spelling-correction"],"latest_commit_sha":null,"homepage":"","language":"Smalltalk","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pharo-ai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-04-08T12:16:47.000Z","updated_at":"2025-09-29T11:53:08.000Z","dependencies_parsed_at":"2022-09-25T01:51:23.429Z","dependency_job_id":null,"html_url":"https://github.com/pharo-ai/spelling-correction","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pharo-ai/spelling-correction","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pharo-ai%2Fspelling-correction","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pharo-ai%2Fspelling-correction/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pharo-ai%2Fspelling-correction/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pharo-ai%2Fspelling-correction/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pharo-ai","download_url":"https://codeload.github.com/pharo-ai/spelling-correction/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pharo-ai%2Fspelling-correction/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278755147,"owners_count":26040034,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["natural-language-processing","pharo","spelling","spelling-correction"],"created_at":"2024-11-24T22:13:19.970Z","updated_at":"2025-10-07T09:53:19.343Z","avatar_url":"https://github.com/pharo-ai.png","language":"Smalltalk","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spelling Correction\n\n[![Build status](https://github.com/pharo-ai/spelling-correction/workflows/CI/badge.svg)](https://github.com/pharo-ai/spelling-correction/actions/workflows/test.yml)\n[![Coverage Status](https://coveralls.io/repos/github/pharo-ai/spelling-correction/badge.svg?branch=master)](https://coveralls.io/github/pharo-ai/spelling-correction?branch=master)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/pharo-ai/spelling-correction/master/LICENSE)\n\nA spelling correction algorithm that can identify and fix spelling mistakes.\n\n## How to install it?\n\nTo install `spelling-correction`, go to the Playground (Ctrl+OW) in your [Pharo](https://pharo.org/) image and execute the following Metacello script (select it and press Do-it button or Ctrl+D):\n\n```Smalltalk\nMetacello new\n  baseline: 'AISpellingCorrection';\n  repository: 'github://pharo-ai/spelling-correction/src';\n  load.\n```\n\n## How to depend on it?\n\nIf you want to add a dependency on `spelling-correction` to your project, include the following lines into your baseline method:\n\n```Smalltalk\nspec\n  baseline: 'AISpellingCorrection'\n  with: [ spec repository: 'github://pharo-ai/spelling-correction/src' ].\n```\n\nIf you are new to baselines and Metacello, check out the [Baselines](https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/Baselines.md) tutorial on Pharo Wiki.\n\n## How to use it?\n\n```Smalltalk\ncorrector := AISpellingCorrector new.\n```\n```Smalltalk\nlanguageFile := 'pharo-local/iceberg/pharo-ai/spelling-correction/data/english.json' asFileReference.\ncorrector loadLanguageModelFrom: languageFile.\n```\n```Smalltalk\ncorrector isKnownWord: 'something'. \"true\"\ncorrector isKnownWord: 'somthing'. \"false\"\n```\n```Smalltalk\ncorrector correctionsFor: 'somthing'. \"an OrderedCollection('something' 'soothing')\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpharo-ai%2Fspelling-correction","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpharo-ai%2Fspelling-correction","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpharo-ai%2Fspelling-correction/lists"}