### Install Project Dependencies with pnpm Source: https://github.com/upstash/wikipedia-semantic-search/blob/main/README.md This command installs all necessary project dependencies using pnpm, a fast and disk space efficient package manager. ```bash pnpm install ``` -------------------------------- ### Run Development Server with pnpm Source: https://github.com/upstash/wikipedia-semantic-search/blob/main/README.md This command starts the local development server for the project, allowing you to test the application. ```bash pnpm dev ``` -------------------------------- ### Example English JSON Data for Translation Source: https://github.com/upstash/wikipedia-semantic-search/blob/main/messages/llm-prompt.md This JSON object contains example questions in English, intended as the source data for translation into multiple languages listed in the document. ```JSON { "exampleTitle": "Example questions", "example1": "Longest river in the world", "example2": "Books by Stephen King", "example3": "Who invented the airplane?" } ``` -------------------------------- ### Configure Environment Variables for Upstash Services Source: https://github.com/upstash/wikipedia-semantic-search/blob/main/README.md This snippet outlines the required environment variables for connecting to Upstash Vector, Redis, and QStash LLM APIs. These credentials should be placed in a .env file in the project's root directory. ```bash UPSTASH_VECTOR_REST_URL= UPSTASH_VECTOR_REST_TOKEN= UPSTASH_REDIS_REST_TOKEN= UPSTASH_REDIS_REST_URL= QSTASH_TOKEN= ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.