AI Chatbot

AI Chatbot is a basic functional chat that support only text chat for now. To make it work, you need to set API key for either OpenAI or Grok (grok.com). By default, it use OpenAI, you can update it in ChatService class.

Open appsetting.json and find the following APIKey to update:

...
"AIConfig": {
        "OpenAI": {
            ...
            "APIKey": "",
            ...
        }
        ...
},
...

For local development, it is recommended to use Secret Manager to store your API Key with the following command from within the project directory:

dotnet user-secrets set "AIConfig:OpenAI:APIKey" "12345"

Run the app and go to Chat page to test it.