### Installing Vercel CLI and Linking Project - Shell Source: https://github.com/openrouterteam/tool-calling/blob/main/README.md These commands guide the user through installing the Vercel CLI globally, linking their local project to Vercel and GitHub accounts, and downloading environment variables from Vercel. This setup is a prerequisite for running the application locally with Vercel's environment configuration. ```Shell npm i -g vercel vercel link vercel env pull ``` -------------------------------- ### Installing Dependencies and Running Development Server - pnpm Source: https://github.com/openrouterteam/tool-calling/blob/main/README.md This snippet provides commands to install project dependencies and start the development server locally. It assumes 'pnpm' is used as the package manager and that the necessary environment variables have already been pulled using the Vercel CLI. ```Shell pnpm install pnpm dev ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.