### Start NeoConverse Application Source: https://github.com/neo4j-labs/neoconverse/blob/master/README.md Starts the NeoConverse application after it has been built. This command runs the compiled application, making it accessible. ```bash sudo npm run start ``` -------------------------------- ### Install NPM Packages Source: https://github.com/neo4j-labs/neoconverse/blob/master/README.md Installs all necessary npm packages for NeoConverse using npm. The `--legacy-peer-deps` flag is used to handle potential peer dependency conflicts during installation. ```bash sudo npm install --legacy-peer-deps ``` -------------------------------- ### Build NeoConverse Application Source: https://github.com/neo4j-labs/neoconverse/blob/master/README.md Compiles and builds the NeoConverse application for deployment or running. This command is typically executed after installing dependencies. ```bash sudo npm run build ``` -------------------------------- ### Clone NeoConverse Repository Source: https://github.com/neo4j-labs/neoconverse/blob/master/README.md This command clones the NeoConverse GitHub repository to your local machine. It allows you to access the latest code from the master branch for on-premise installation. ```bash https://github.com/neo4j-labs/neoconverse.git ``` -------------------------------- ### NeoConverse Environment Variables Source: https://github.com/neo4j-labs/neoconverse/blob/master/README.md Configuration for NeoConverse, including API keys for LLM providers (OpenAI, Google, AWS) and Neo4j backend connection details. These variables are crucial for setting up predefined agents and connecting to your Neo4j database. ```dotenv OPENAI_API_KEY= GOOGLE_API_KEY= AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_MODEL=claude-3-haiku-20240307 GOOGLE_MODEL=gemini-1.0-pro OPENAI_MODEL=gpt-4 DEFUALT_PROVIDER="Open AI" DEFUALT_MODEL="gpt-4-turbo-preview" ENCRYPTION_KEY=neoconversesecretkey NEXT_PUBLIC_BACKEND_HOST = NEXT_PUBLIC_BACKEND_UNAME = NEXT_PUBLIC_BACKEND_PWD = NEXT_PUBLIC_BACKEND_DATABASE = ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.