### Installing Project Dependencies (Bash) Source: https://github.com/simliai/create-simli-app-openai/blob/main/README.md Runs the npm install command to download and install all necessary packages listed in the project's package.json file. ```Bash npm install ``` -------------------------------- ### Running Development Server (Bash) Source: https://github.com/simliai/create-simli-app-openai/blob/main/README.md Executes the npm run dev script, typically defined in package.json, to start the local development server for the Next.js application. ```Bash npm run dev ``` -------------------------------- ### Configuring Avatar Settings (JavaScript) Source: https://github.com/simliai/create-simli-app-openai/blob/main/README.md Defines a JavaScript object containing configuration details for the avatar, including its name, Simli face ID, and the initial prompt used to guide its behavior. ```JavaScript const avatar = { name: "Frank", simli_faceid: "5514e24d-6086-46a3-ace4-6a7264e5cb7c", initialPrompt: "You are a helpful AI assistant named Frank. You are friendly and concise in your responses. Your task is to help users with any questions they might have.", }; ``` -------------------------------- ### Configuring API Keys in .env (JavaScript) Source: https://github.com/simliai/create-simli-app-openai/blob/main/README.md Sets the required environment variables for the Simli and OpenAI API keys in the .env file. These keys are necessary for the application to authenticate with the respective services. ```JavaScript NEXT_PUBLIC_SIMLI_API_KEY="SIMLI-API-KEY" NEXT_PUBLIC_OPENAI_API_KEY="OPENAI-API-KEY" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.