{"id":18129192,"url":"https://github.com/jkawamoto/vsop","last_synced_at":"2026-02-14T02:35:34.689Z","repository":{"id":240899486,"uuid":"802723127","full_name":"jkawamoto/vsop","owner":"jkawamoto","description":"Command line translation tool using CTranslate2","archived":false,"fork":false,"pushed_at":"2025-04-08T02:24:24.000Z","size":151,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-27T18:41:43.347Z","etag":null,"topics":["ctranslate2","llm","translation"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/jkawamoto.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":"2024-05-19T04:52:28.000Z","updated_at":"2025-04-08T02:24:22.000Z","dependencies_parsed_at":"2024-05-21T11:12:43.893Z","dependency_job_id":"f73c02b5-77c4-4e02-b4ca-ed4f4f9a124d","html_url":"https://github.com/jkawamoto/vsop","commit_stats":null,"previous_names":["jkawamoto/vsop"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jkawamoto/vsop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkawamoto%2Fvsop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkawamoto%2Fvsop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkawamoto%2Fvsop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkawamoto%2Fvsop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jkawamoto","download_url":"https://codeload.github.com/jkawamoto/vsop/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkawamoto%2Fvsop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29432277,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T02:20:56.896Z","status":"ssl_error","status_checked_at":"2026-02-14T02:11:29.478Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["ctranslate2","llm","translation"],"created_at":"2024-11-01T10:07:06.662Z","updated_at":"2026-02-14T02:35:34.672Z","avatar_url":"https://github.com/jkawamoto.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vsop\n[![Build](https://github.com/jkawamoto/vsop/actions/workflows/build.yml/badge.svg)](https://github.com/jkawamoto/vsop/actions/workflows/build.yml)\n\nCommand line translation tool using [CTranslate2](https://github.com/OpenNMT/CTranslate2).\n\nThis tool employs a client-server approach to avoid loading the model every time a text needs to be translated.\n\n## Basic Usage\nSince this tool consists of a client and a server, the server `vsops` needs to be started first.\nThis command runs the server in the background:\n\n```bash\nvsops \u0026\n```\n\nThen, run the client `vsop` to translate text. This command launches `vsop`,\nwhich opens an editor for entering the text to be translated:\n\n```bash\nvsop\n```\n\nAfter saving and closing the editor, the text is translated.\n\n## Installation\n\n```bash\nbrew install jkawamoto/tap/vsop\n````\n\nPrebuilt binaries are also available on the [release page](https://github.com/jkawamoto/vsop/releases).\n\n## Compilation\nThis tool works on Linux and Mac, using several backend libraries such as\n[OpenBLAS](https://www.openblas.net/),\n[Intel MKL](https://www.intel.com/content/www/us/en/developer/tools/oneapi/onemkl.html),\n[Ruy](https://github.com/google/ruy), and [Apple Accelerate](https://developer.apple.com/documentation/accelerate).\n\nSee [the `ct2rs` documentation](https://github.com/jkawamoto/ctranslate2-rs?tab=readme-ov-file#compilation)\nfor instructions on how to compile this tool using these backends.\n\n## Commands\nThis tool provides the following commands.\n\n### vsop\nA client application for `vsops`, a translation server using CTranslate2.\n\nThis application opens an editor specified by the `EDITOR` environment variable and sends a translation request with\nthe written text to the server. If a file path is provided using the `--file` flag, the text in the file will be used\nfor the translation request. If the `--stdin` flag is given, it reads from stdin to obtain the text for translation.\n\nTo communicate with the server, it uses a domain socket. It attempts to connect to the socket file located in the\nuser's data directory. However, if a different path is specified with the `--socket-file` flag, it will connect to the\nsocket file at that specified location.\n\n### vsops\nA translation server using CTranslate2.\n\nThis server creates a UNIX domain socket, listens for translation requests, and handles them accordingly.\n\nBy default, a socket file is created in the user’s data directory. If the `--socket-file` flag is used to specify an\nalternative path, the socket file will be created at that location.\n\nThe model specified by the `--model` flag will be downloaded from Hugging Face and loaded. If the `--model-dir` flag is\nused to specify a directory path, the model within that directory will be loaded instead.\n\n## License\n\nThis application is released under the MIT License. For details, see the [LICENSE](LICENSE) file.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjkawamoto%2Fvsop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjkawamoto%2Fvsop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjkawamoto%2Fvsop/lists"}