Core configurations
The core configuration can be done via changing the environment variables. For local development and testing create file called .env.local int the root of your project directory. Check .env.sample for more information.
| Variable | Description | Example Value |
|---|---|---|
| APP_NAME | Name your application | MultiGPT |
| APP_NATURE | Define the nature of the bot. This the is the most important configuration | In can be anything but need to be readable. Let's see some examples: For a coding bot: "I'm a helpful bot that can help you with your coding questions." For a chef bot: "I'm a helpful and professional chef that can help you with your cooking recipes." For a teacher bot: "I'm a helpful and skilled teacher and my teaching techniques are very unique that every student likes. I can help you with your study." |
| DISPLAY_ADS | This determines if you want to enable or disable ads on your site | true or false |
| SOFTISIA_LICENSE_KEY | This a very important part. You need this to connect your app with your MultiGPT API processor. Without a valid key you can't use your app properly. Click here to get your api key | XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX |
Our core configuration is done now we can move to the next part