{"id":14985880,"url":"https://github.com/asasvirtuais/gitinbed","last_synced_at":"2026-02-13T08:06:20.788Z","repository":{"id":253455831,"uuid":"843558821","full_name":"asasvirtuais/gitinbed","owner":"asasvirtuais","description":"A simple solution to combine Version Control with Embed Indexing. Creates, updates, and removes embeddings of the repository files based on GIT A (Added Files), M (Modified Files), R (Removed Files), using Voyage and Pinecone.","archived":false,"fork":false,"pushed_at":"2025-01-13T11:59:37.000Z","size":571,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-21T16:39:27.347Z","etag":null,"topics":["actions","embeddings","pinecone","voyage","workflow"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/asasvirtuais.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}},"created_at":"2024-08-16T19:32:45.000Z","updated_at":"2024-10-14T19:18:11.000Z","dependencies_parsed_at":"2025-02-15T00:32:36.237Z","dependency_job_id":"1fc2a1d3-18a2-469a-a078-e4b027ca104b","html_url":"https://github.com/asasvirtuais/gitinbed","commit_stats":{"total_commits":47,"total_committers":2,"mean_commits":23.5,"dds":"0.19148936170212771","last_synced_commit":"530aa6916c504f03f1c5f1613bc3c45ebe8e01ce"},"previous_names":["asasvirtuais/gitembed"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/asasvirtuais/gitinbed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asasvirtuais%2Fgitinbed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asasvirtuais%2Fgitinbed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asasvirtuais%2Fgitinbed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asasvirtuais%2Fgitinbed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/asasvirtuais","download_url":"https://codeload.github.com/asasvirtuais/gitinbed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asasvirtuais%2Fgitinbed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29399431,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"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":["actions","embeddings","pinecone","voyage","workflow"],"created_at":"2024-09-24T14:11:49.519Z","updated_at":"2026-02-13T08:06:20.486Z","avatar_url":"https://github.com/asasvirtuais.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e Git in bed or get embedded\r\n\r\nCreates, updates, and removes embeddings of the repository files based on GIT A (Added Files), M (Modified Files), R (Removed Files), using Voyage and Pinecone\r\n\r\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\r\n[![GitHub release](https://img.shields.io/github/release/asasvirtuais/gitinbed.svg)](https://GitHub.com/asasvirtuais/gitinbed/releases/)\r\n\r\n## Usage example with Workflow file\r\n\r\n.github/workflows/git-repo-embed.yml\r\n```.yml\r\nname: gitinbed\r\n\r\non:\r\n  push:\r\n    branches:\r\n      - main\r\n\r\njobs:\r\n  update-embeddings:\r\n    runs-on: ubuntu-latest\r\n    steps:\r\n    - uses: actions/checkout@v4\r\n\r\n    - name: Get changed files\r\n      id: changed-files\r\n      uses: tj-actions/changed-files@v44\r\n\r\n    - name: Update Embeddings\r\n      uses: asasvirtuais/gitinbed@main\r\n      env:\r\n        VOYAGE_MODEL: voyage-large-2-instruct\r\n        PINECONE_INDEX: ${{ github.repository_owner }}\r\n        PINECONE_NAMESPACE: ${{ github.event.repository.name }}\r\n        PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}\r\n        VOYAGE_API_KEY: ${{ secrets.VOYAGE_API_KEY }}\r\n      with:\r\n        created: ${{ steps.changed-files.outputs.added_files }}\r\n        updated: ${{ steps.changed-files.outputs.modified_files }}\r\n        removed: ${{ steps.changed-files.outputs.deleted_files }}\r\n```\r\n\r\n## Pinecone results:\r\n![asasvirtuais-Pinecone-Console](https://github.com/user-attachments/assets/6ed20d9e-f541-417e-a868-031159dab564)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasasvirtuais%2Fgitinbed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasasvirtuais%2Fgitinbed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasasvirtuais%2Fgitinbed/lists"}