sp-dev-fx-webparts/samples/react-chatgpt-app
dependabot[bot] 412b87678f
Bump webpack from 5.75.0 to 5.94.0 in /samples/react-chatgpt-app
Bumps [webpack](https://github.com/webpack/webpack) from 5.75.0 to 5.94.0.
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](https://github.com/webpack/webpack/compare/v5.75.0...v5.94.0)

---
updated-dependencies:
- dependency-name: webpack
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-04 10:11:45 +00:00
..
.devcontainer Renamed path to lowercase 2023-02-21 13:50:58 -05:00
OpenAIFunctionProject commit changes on ChatGPT-APP 2023-03-02 21:21:58 +00:00
assets Added web part to every sample 2024-04-18 01:51:29 -04:00
config Renamed path to lowercase 2023-02-21 13:50:58 -05:00
fast-serve Renamed path to lowercase 2023-02-21 13:50:58 -05:00
src commit changes on CHatGPT-APP - add support to Chat and Channels 2023-03-05 16:42:45 +00:00
teams Renamed path to lowercase 2023-02-21 13:50:58 -05:00
.eslintrc.js Renamed path to lowercase 2023-02-21 13:50:58 -05:00
.gitignore Renamed path to lowercase 2023-02-21 13:50:58 -05:00
.npmignore Renamed path to lowercase 2023-02-21 13:50:58 -05:00
.yo-rc.json Renamed path to lowercase 2023-02-21 13:50:58 -05:00
README.md Updated links to devprogram 2024-02-06 11:16:44 -05:00
gulpfile.js Renamed path to lowercase 2023-02-21 13:50:58 -05:00
package-lock.json Bump webpack from 5.75.0 to 5.94.0 in /samples/react-chatgpt-app 2024-09-04 10:11:45 +00:00
package.json Bump axios and openai in /samples/react-chatgpt-app 2024-08-12 23:47:47 +00:00
tsconfig.json Renamed path to lowercase 2023-02-21 13:50:58 -05:00

README.md

Chat GPT App

Summary

This App is a implementation of OpenAI ChatGPT-3. It runs on SharePoint, Teams as Personal or Teams App and Message Extension.

React-ChatGPT-App React-ChatGPT-App

Compatibility

⚠️ Important
Every SPFx version is optimally compatible with specific versions of Node.js. In order to be able to build this sample, you need to ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.
Refer to https://aka.ms/spfx-matrix for more information on SPFx compatibility.

This sample is optimally compatible with the following environment configuration:

SPFx 1.16.1 Node.js v16 | v14 | v12 Compatible with SharePoint Online Does not work with SharePoint 2019 Does not work with SharePoint 2016 (Feature Pack 2) Local Workbench Unsupported Hosted Workbench Compatible Compatible with Remote Containers

Applies to

Get your own free development tenant by subscribing to Microsoft 365 developer program

Prerequisites

The SPFx App has thisPrerequisites:

  • Azure Function Deployed to Azure

    In the directory ./OpenAIFunctionProject/OpenAI-azure-functions.zip you will found the project with AzureFunction zip.ed, please copy to local computer unzip and deploy. The Azure Function App needs to be configured with Authentication Provider Microsoft , please see the README.md file on the project.

  • OpenAI KEY

    The App require your personal API_KEY to call the API to ChatGPT. Please go to OpenAI and create an Account and get your API KEY. This API KY needs to be configured on the Azure Function App in Applications Settings. See README.md on Azure Functions Project for more details.

  • Configure Tenant Properties.

    The App needs the follow tenant properties configured on your tenant :

    • "OpenAIFunctionsAppId" this Tenant property has the Azure APPID used to secure your Azure Function APP (see README.md on OpenAIFunctionProject)

      To add Tenant property you can use M365 Cli or PowerShell to do it.

      sample M365 Cli :

      ``m365 spo storageentity set --key OpenAIFunctionsAppId --value  6b4a20b2-bf2f-xxxx-xxxx-af960a40c2dc  --appCatalogUrl https://xxxxx.sharepoint.com/sites/appcatalog``
      

      sample PnP-PowerShell:

      ``Set-PnPStorageEntity -Key OpenAIFunctionsAppId -Value 6b4a20b2-bf2f-xxxx-xxxx-af960a40c2dc``
      
    • "OpenAIAzureFunctionUrl", this Tenant property has the URL of Azure Function

      sample M365 Cli :

      ``m365 spo storageentity set --key OpenAIAzureFunctionUrl --value  https://openaifunctionsapp.azurewebsites.net/api/OpenAICompletion  --appCatalogUrl https://xxxxx.sharepoint.com/sites/appcatalog``
      

      sample PnP-PowerShell:

       ``Set-PnPStorageEntity -Key OpenAIAzureFunctionUrl -Value  https://openaifunctionsapp.azurewebsites.net/api/OpenAICompletion``
      
      • Upload APP to Teams catalog

        This App can be used has Teams Message Extension, please go to "teams" directory and upload the zip file to Teams App on M365 Teams Administration.

    • Approve the Required App Permissions on SharePoint Admin.

      You need to add the required permissions to the App for your Azure App used to secure the Azure Function App, by default the project has the follow defined on the package-solution.json:

      "webApiPermissionRequests": [ { "resource": "OpenAIFunctionsApp", "scope": "user_impersonation" } ],

This assume you have a Azure App called "OpenAIFunctionsApp", you can change this before bundle and create the package to deploy and after you Azure Functions App configured. https://admin.teams.microsoft.com/policies/manage-apps

Contributors

Version history

Version Date Comments
1.0.0 Feb 19, 2023 Initial release
1.1.0 March 2, 2023 Update ChatGPT-APP to use the latest API and model ChatGPT-3.5-turbo

Minimal Path to Awesome

  • Clone this repository
  • in the command line run:
    • npm install
    • gulp build
    • gulp bundle --ship
    • gulp package-solution --ship
    • Add and Deploy Package to AppCatalog

This sample can also be opened with VS Code Remote Development. Visit https://aka.ms/spfx-devcontainer for further instructions.

Features

This project shows how to use OpenAPI to ChatGPT and share information on teams message as an adaptive card.

  • using React for building SharePoint Framework client-side web parts
  • using React components for building ChatGPT web part
  • using OpenAI API
  • using MSGraph API to send AdaptiveCard to Chat
  • Using React Hooks
  • using Global State Management (JOTAI)
  • using localStorage
  • using Fluent UI FrameWork

References

Help

We do not support samples, but we this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.

If you're having issues building the solution, please run spfx doctor from within the solution folder to diagnose incompatibility issues with your environment.

If you encounter any issues while using this sample, create a new issue.

For questions regarding this sample, create a new question.

Finally, if you have an idea for improvement, make a suggestion.

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.