{"id":42761217,"url":"https://github.com/starwit/aic-connector-cv","last_synced_at":"2026-01-29T20:34:09.183Z","repository":{"id":315097845,"uuid":"1058060644","full_name":"starwit/aic-connector-cv","owner":"starwit","description":"Delivers computer vision detections to ai-cockpit.","archived":false,"fork":false,"pushed_at":"2025-11-10T13:59:30.000Z","size":164,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-10T14:26:44.677Z","etag":null,"topics":["computer-vision","sae"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/starwit.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":"2025-09-16T15:10:35.000Z","updated_at":"2025-11-10T13:59:10.000Z","dependencies_parsed_at":"2025-10-30T17:13:55.465Z","dependency_job_id":"7ce2c939-fc91-4b85-9e8d-2bb9a35eff35","html_url":"https://github.com/starwit/aic-connector-cv","commit_stats":null,"previous_names":["starwit/aic-connector-cv"],"tags_count":14,"template":false,"template_full_name":"starwit/sae-stage-template","purl":"pkg:github/starwit/aic-connector-cv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starwit%2Faic-connector-cv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starwit%2Faic-connector-cv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starwit%2Faic-connector-cv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starwit%2Faic-connector-cv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/starwit","download_url":"https://codeload.github.com/starwit/aic-connector-cv/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starwit%2Faic-connector-cv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28884291,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T19:55:09.949Z","status":"ssl_error","status_checked_at":"2026-01-29T19:55:08.490Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["computer-vision","sae"],"created_at":"2026-01-29T20:34:08.163Z","updated_at":"2026-01-29T20:34:09.173Z","avatar_url":"https://github.com/starwit.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AI Cockpit Connector for Computer Vision\n\nThis component sends sae detection results to ai-cockpit and adds images with bounding boxes to ai-cockpits minio bucket and creates a new decision for human operators to check.\n\n## Background \u0026 Concept\nAI software makes complex decisions and thus it is necessary to keep humans in control. In order to have a central place for this kind of checks [AI Cockpit](https://github.com/starwit/ai-cockpit) was developed. \n\nTo get decisions into cockpit connecting components are necessary and this component connects object detection events to AI Cockpit. Decisions checked here are fairly simple - test if detections are correct. If you want to develop your own connector, this project can serve as a template. \n\n# Development\nThis section contains all info how to setup local development. \n\n## Check prerequisites\nIn order to work with this repository, you need to ensure the following steps:\n- Install Poetry\n- Install Docker\n\n## Setup\n- Run `poetry install`, this should install all necessary dependencies\n- Start docker compose version of the SAE (see here: https://github.com/starwit/starwit-awareness-engine/blob/main/docker-compose/README.md)\n- Run `poetry run python main.py`. If you see log messages like `Received SAE message from pipeline`, everything works as intended.\n\n## Configuration\nThis template employs pydantic-settings for configuration handling. On startup, the following happens:\n1. Load defaults (see `config.py`)\n2. Read settings `settings.yaml` if it exists\n3. Search through environment variables if any match configuration parameters (converted to upper_snake_case, nested levels delimited by `__`), overwriting the corresponding setting\n4. Validate settings hierarchy if all necessary values are filled, otherwise Pydantic will throw a hopefully helpful error\n\nThe `settings.template.yaml` should always reflect a correct and fully fledged settings structure to use as a starting point for users. \n\n## Github Workflows and Versioning\n\nThe following Github Actions are available:\n\n* [PR build](.github/workflows/pr-build.yml): Builds python project for each pull request to main branch. `poetry install` and `poetry run pytest` are executed, to compile and test python code.\n* [Build and publish latest image](.github/workflows/build-publish-latest.yml): Manually executed action. Same like PR build. Additionally puts latest docker image to internal docker registry.\n* [Create release](.github/workflows/create-release.yml): Manually executed action. Creates a github release with tag, docker image in internal docker registry, helm chart in chartmuseum by using and incrementing the version in pyproject.toml. Poetry is updating to next version by using \"patch, minor and major\" keywords. If you want to change to non-incremental version, set version in directly in pyproject.toml and execute create release afterwards.\n\n## Dependabot Version Update\n\nWith [dependabot.yml](.github/dependabot.yml) a scheduled version update via Dependabot is configured. Dependabot creates a pull request if newer versions are available and the compilation is checked via PR build.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarwit%2Faic-connector-cv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstarwit%2Faic-connector-cv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarwit%2Faic-connector-cv/lists"}