{"id":21625246,"url":"https://github.com/ohcnetwork/care_livekit","last_synced_at":"2026-01-24T17:34:24.032Z","repository":{"id":257804626,"uuid":"864870561","full_name":"ohcnetwork/care_livekit","owner":"ohcnetwork","description":"Plugin to enable live doctor connect through livekit","archived":false,"fork":false,"pushed_at":"2024-10-15T07:53:22.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-12-10T06:22:15.700Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/ohcnetwork.png","metadata":{"files":{"readme":"README.md","changelog":"HISTORY.rst","contributing":"CONTRIBUTING.rst","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}},"created_at":"2024-09-29T11:45:33.000Z","updated_at":"2024-10-15T07:53:26.000Z","dependencies_parsed_at":"2024-09-29T12:15:47.911Z","dependency_job_id":"30c45826-cbc0-416a-8900-1e1dd01e605e","html_url":"https://github.com/ohcnetwork/care_livekit","commit_stats":null,"previous_names":["ohcnetwork/care_livekit"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ohcnetwork/care_livekit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ohcnetwork%2Fcare_livekit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ohcnetwork%2Fcare_livekit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ohcnetwork%2Fcare_livekit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ohcnetwork%2Fcare_livekit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ohcnetwork","download_url":"https://codeload.github.com/ohcnetwork/care_livekit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ohcnetwork%2Fcare_livekit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28732672,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"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":[],"created_at":"2024-11-25T01:08:32.342Z","updated_at":"2026-01-24T17:34:24.019Z","avatar_url":"https://github.com/ohcnetwork.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Care Livekit\n\n[![Release Status](https://img.shields.io/pypi/v/care_livekit.svg)](https://pypi.python.org/pypi/care_livekit)\n[![Build Status](https://github.com/ohcnetwork/care_livekit/actions/workflows/build.yaml/badge.svg)](https://github.com/ohcnetwork/care_livekit/actions/workflows/build.yaml)\n\nCare Livekit is a plugin for care to add voice auto fill support using external services like OpenAI whisper and Google Speech to Text.\n\n## Features\n\n- Voice auto fill support for care\n- Support for OpenAI whisper and Google Speech to Text\n\n## Installation\n\nhttps://care-be-docs.ohc.network/pluggable-apps/configuration.html\n\nhttps://github.com/ohcnetwork/care/blob/develop/plug_config.py\n\nTo install care livekit, you can add the plugin config in [care/plug_config.py](https://github.com/ohcnetwork/care/blob/develop/plug_config.py) as follows:\n\n```python\n...\n\nlivekit_plug = Plug(\n    name=\"livekit\",\n    package_name=\"git+https://github.com/ohcnetwork/care_livekit.git\",\n    version=\"@main\",\n    configs={},\n)\nplugs = [livekit_plug]\n...\n```\n\n## Local Development\n\nTo develop the plug in local environment along with care, follow the steps below:\n\n1. Go to the care root directory and clone the plugin repository:\n\n```bash\ncd care\ngit clone git@github.com:ohcnetwork/care_livekit.git\n```\n\n2. Add the plugin config in plug_config.py\n\n```python\n...\n\nlivekit_plugin = Plug(\n    name=\"livekit\", # name of the django app in the plugin\n    package_name=\"/app/care_livekit\", # this has to be /app/ + plugin folder name\n    version=\"\", # keep it empty for local development\n    configs={}, # plugin configurations if any\n)\nplugs = [livekit_plug]\n\n...\n```\n\n3. Tweak the code in plugs/manager.py, install the plugin in editable mode\n\n```python\n...\n\nsubprocess.check_call(\n    [sys.executable, \"-m\", \"pip\", \"install\", \"-e\", *packages] # add -e flag to install in editable mode\n)\n\n...\n```\n\n4. Rebuild the docker image and run the server\n\n```bash\nmake re-build\nmake up\n```\n\n[!IMPORTANT]: Do not push these changes in a PR. These changes are only for local development.\n\n## Configuration\n\nThe following configurations variables are available for Care Livekit:\n\n- `LIVEKIT_API_URL`: Websocket URL for the Livekit server, default is `wss://livekit.ohc.network`\n- `LIVEKIT_API_KEY`: API key for the Livekit server\n- `LIVEKIT_API_SECRET`: API secret for the Livekit server\n- `LIVEKIT_ROOM_NAME_PREFIX`: Prefix for the room name, default is `care-`\n\nThe plugin will try to find the API key from the config first and then from the environment variable.\n\n## License\n\nThis project is licensed under the terms of the [MIT license](LICENSE).\n\n---\n\nThis plugin was created with [Cookiecutter](https://github.com/audreyr/cookiecutter) using the [ohcnetwork/care-plugin-cookiecutter](https://github.com/ohcnetwork/care-plugin-cookiecutter).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fohcnetwork%2Fcare_livekit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fohcnetwork%2Fcare_livekit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fohcnetwork%2Fcare_livekit/lists"}