{"id":24972988,"url":"https://github.com/weaviate-tutorials/nuxt-vector-search","last_synced_at":"2026-01-31T21:40:11.473Z","repository":{"id":237008721,"uuid":"778531203","full_name":"weaviate-tutorials/nuxt-vector-search","owner":"weaviate-tutorials","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-09T12:29:01.000Z","size":1089,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-24T15:04:15.523Z","etag":null,"topics":["weaviate-starter"],"latest_commit_sha":null,"homepage":"","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/weaviate-tutorials.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-03-27T22:26:27.000Z","updated_at":"2025-04-09T12:29:04.000Z","dependencies_parsed_at":"2025-02-03T18:11:19.558Z","dependency_job_id":"1d4f62bf-6763-4e6b-9db9-215dfe13aaf7","html_url":"https://github.com/weaviate-tutorials/nuxt-vector-search","commit_stats":null,"previous_names":["malgamves/nuxt-typescript-vector-search","weaviate-tutorials/nuxt-vector-search"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/weaviate-tutorials/nuxt-vector-search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaviate-tutorials%2Fnuxt-vector-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaviate-tutorials%2Fnuxt-vector-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaviate-tutorials%2Fnuxt-vector-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaviate-tutorials%2Fnuxt-vector-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/weaviate-tutorials","download_url":"https://codeload.github.com/weaviate-tutorials/nuxt-vector-search/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaviate-tutorials%2Fnuxt-vector-search/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28956550,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T18:30:42.805Z","status":"ssl_error","status_checked_at":"2026-01-31T18:30:19.593Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["weaviate-starter"],"created_at":"2025-02-03T18:11:11.817Z","updated_at":"2026-01-31T21:40:11.438Z","avatar_url":"https://github.com/weaviate-tutorials.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vector Search and RAG with [Weaviate](https://weaviate.io/), Nuxt.js, [Cohere](https://cohere.com/) and [Open AI](https://openai.com/)\n\nThis repo should help get you started developing RAG Applications with Weaviate and Nuxt.js.\n\n![Weaviate](https://github.com/weaviate-tutorials/nuxt-vector-search/blob/main/public/cover.png)\n\n## Installation \n\n1. Clone the repo with the following command\n    ```\n    git clone https://github.com/weaviate-tutorials/nuxt-vector-search\n    ```\n\n2. Install the necessary project dependencies with the following command\n    ```\n    yarn install\n    ```\n3. Create a Weaviate instance on Weaviate Cloud Services as described in [this guide](https://weaviate.io/developers/weaviate/quickstart#step-2-create-an-instance)\n\n4. Create a `.env` file and add the following keys\n    - your Open AI API key as `NUXT_OPENAI_API_KEY` (you can get this in your [Open AI settings](https://platform.openai.com/account/api-keys))\n    - your Cohere API key as `NUXT_COHERE_API_KEY` (you can get this in your [Cohere settings](https://dashboard.cohere.com/api-keys))\n    - your Weaviate API key as `NUXT_WEAVIATE_READ_KEY` (you can get this in your [Weaviate dashboard](https://console.weaviate.cloud/dashboard) under sandbox details)\n    - your Weaviate host URL as `NUXT_WEAVIATE_HOST_URL` (you can get this in your [Weaviate dashboard](https://console.weaviate.cloud/dashboard) under sandbox details)\n\n\n5. Import your data and initialize your collections with the following command\n   ```\n   # I will add details on how to import your Wiki data soon\n   ``` \n5. Start your Nuxt.js app with the following command\n    ```\n    yarn dev\n    ```\n\n6. Search away!!\n\n💫you can tweak the prompt for the generative search by [editing this line of code](https://github.com/weaviate-tutorials/nuxt-vector-search/blob/1f259625ea2a6ae99f4bef0f4072e0507c1d682c/server/api/rag.ts#L26)\n\n## 📚 Resources\nLearn more about Weaviate applications\n- [Weaviate Generative Search](https://weaviate.io/developers/weaviate/modules/reader-generator-modules/generative-openai)\n- [Vector Search](https://weaviate.io/developers/weaviate/search/similarity)\n  \n## 🤷🏾‍♂️ Troubleshooting\n- Check out the [Weaviate Docs](https://weaviate.io/developers/weaviate)\n- Open an [Issue](https://github.com/malgamves/vue-vector-search-demo/issues/new)\n   \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweaviate-tutorials%2Fnuxt-vector-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweaviate-tutorials%2Fnuxt-vector-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweaviate-tutorials%2Fnuxt-vector-search/lists"}