{"id":27042252,"url":"https://github.com/intellabs/langchain-vdms","last_synced_at":"2025-04-05T04:19:52.793Z","repository":{"id":276222784,"uuid":"927396608","full_name":"IntelLabs/langchain-vdms","owner":"IntelLabs","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-17T23:07:40.000Z","size":184,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-17T23:34:51.453Z","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/IntelLabs.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":"2025-02-04T22:09:45.000Z","updated_at":"2025-02-18T16:19:28.000Z","dependencies_parsed_at":"2025-02-15T07:19:10.697Z","dependency_job_id":"7a615e96-3235-4ee2-9fb3-3ec83ca2ab0d","html_url":"https://github.com/IntelLabs/langchain-vdms","commit_stats":null,"previous_names":["cwlacewe/langchain-vdms","intellabs/langchain-vdms"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntelLabs%2Flangchain-vdms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntelLabs%2Flangchain-vdms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntelLabs%2Flangchain-vdms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntelLabs%2Flangchain-vdms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IntelLabs","download_url":"https://codeload.github.com/IntelLabs/langchain-vdms/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247285900,"owners_count":20913897,"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","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":"2025-04-05T04:19:52.057Z","updated_at":"2025-04-05T04:19:52.785Z","avatar_url":"https://github.com/IntelLabs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# langchain-vdms\n\nThis package contains the LangChain integration with [VDMS](https://github.com/IntelLabs/vdms).\n\n## Installation\n\n```bash\npip install -U langchain-vdms\n```\n\n\u003c!-- And you should configure credentials by setting the following environment variables:\n\n* TODO: fill this out --\u003e\n\n\n## VDMS vector database\n\nThe ``VDMS`` class exposes the VDMS vector store.\n\n```python\nfrom langchain_vdms import VDMS\n```\n\u003cbr\u003e\n\nThe ``VDMS_Client`` function connects to VDMS server using VDMS client.\n\n```python\nfrom langchain_vdms.vectorstores import VDMS_Client\n```\n\u003cbr\u003e\n\nThe ``VDMS_Utils`` class exposes a utility with helpful functions related to VDMS.\n\n```python\nfrom langchain_vdms.vectorstores import VDMS_Utils\n```\n\n## Example Usage\nThis example initiates the VDMS vector store and uses the VDMS Client to connect to a VDMS server on `localhost` using port `55555`.\n```python\nfrom langchain_vdms.vectorstores import VDMS, VDMS_Client\n\nembeddings = ... # use a LangChain Embeddings class\n\nvectorstore_client = VDMS_Client(\"localhost\", 55555)\nvectorstore = VDMS(\n    client=vectorstore_client,\n    collection_name=\"foo\",\n    embedding=embeddings,\n    engine=\"FaissFlat\",\n    distance_strategy=\"L2\",\n)\n```\nSee additional usage [here](https://python.langchain.com/docs/integrations/vectorstores/vdms/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintellabs%2Flangchain-vdms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fintellabs%2Flangchain-vdms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintellabs%2Flangchain-vdms/lists"}