{"id":24972986,"url":"https://github.com/weaviate-tutorials/flick-picker","last_synced_at":"2025-04-17T14:17:01.213Z","repository":{"id":222872376,"uuid":"756421168","full_name":"weaviate-tutorials/flick-picker","owner":"weaviate-tutorials","description":"a nuxt.js multi-modal search demo","archived":false,"fork":false,"pushed_at":"2024-06-26T15:59:48.000Z","size":51839,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T06:11:21.915Z","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}},"created_at":"2024-02-12T16:24:34.000Z","updated_at":"2025-01-02T11:00:57.000Z","dependencies_parsed_at":"2025-02-03T18:11:13.454Z","dependency_job_id":"118eb4cb-6ba1-402d-a596-1361ab98db54","html_url":"https://github.com/weaviate-tutorials/flick-picker","commit_stats":null,"previous_names":["malgamves/flick-picker","weaviate-tutorials/flick-picker"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaviate-tutorials%2Fflick-picker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaviate-tutorials%2Fflick-picker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaviate-tutorials%2Fflick-picker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaviate-tutorials%2Fflick-picker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/weaviate-tutorials","download_url":"https://codeload.github.com/weaviate-tutorials/flick-picker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249347365,"owners_count":21255148,"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":["weaviate-starter"],"created_at":"2025-02-03T18:11:05.521Z","updated_at":"2025-04-17T14:17:01.182Z","avatar_url":"https://github.com/weaviate-tutorials.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"## This is a Multimodal Search demo built with [Weaviate](https://weaviate.io), [Vertex AI](https://cloud.google.com/vertex-ai) and [Nuxt.js](https://nuxt.com/) \n\n👨🏾‍🍳 Blogpost - [Building Multimodal AI in TypeScript\n](https://weaviate.io/blog/multimodal-search-in-typescript)\n\n![Cover](cover.png)\n\n## 🐥 Getting Started\n\nFirst, clone the project with the command below\n\n```bash\ngit clone https://github.com/weaviate-tutorials/flick-picker\n```\n\nThe repository lets us do three things\n1. Run the Nuxt.js Web App.\n2. Import images, and text into your Weaviate database.\n3. Search like it's 2034! \n\n\n### 🏗️ Create a Weaviate Instance\n\nCreate a Weaviate instance on Weaviate Cloud Services as described in [this guide](https://weaviate.io/developers/weaviate/quickstart#step-2-create-an-instance)\n\n### 🦿 Create a `.env` file and add the following keys\n\n- your Google Vertex API key as `NUXT_GOOGLE_API_KEY` (you can get this in your [Vertex AI settings](https://console.cloud.google.com/apis/credentials))\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 Weaviate API key as `NUXT_WEAVIATE_ADMIN_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\n### 📩 Importing Data\n\u003e Before you can import data, add any files to their respective media type in the `public/` folder. You will have to download a dataset of [movie posters](https://drive.google.com/drive/folders/1BKLJmIt9YD0rTGImrHeUc91io5RjGm_l?usp=sharing) and place them in `/public/image`.\n\nWith your data in the right folder, run `yarn install` to install all project dependencies and to import your data into Weaviate and initialize a collection, run:\n```bash\nyarn run import\n```\n\nthis may take a minute or two.\n\n\n### 🚀 Running your Nuxt.js Application.\n\u003e Make sure you have your Weaviate instance running with data imported before starting your Nuxt.js Web App.\n\nTo run the Web App\n```bash\nyarn dev\n```\n\n... and you can search away!! \n\n\n### 📚 Resources\n\nLearn more about multimodal applications\n- [Multimodal Retrieval Augmented Generation(RAG)](https://weaviate.io/blog/multimodal-rag)\n- [Multimodal Embedding Models](https://weaviate.io/blog/multimodal-models)\n\n\n### 🤷🏾‍♂️ Troubleshooting\n\n- Check out the [Weaviate Docs](https://weaviate.io/developers/weaviate)\n- [Open an Issue](https://github.com/malgamves/next-multimodal-search-demo/issues)\n\n\nSome credit goes to Steven for his [Spirals template](https://github.com/steven-tey/spirals)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweaviate-tutorials%2Fflick-picker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweaviate-tutorials%2Fflick-picker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweaviate-tutorials%2Fflick-picker/lists"}