Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 929 Bytes

README.md

File metadata and controls

41 lines (26 loc) · 929 Bytes

Integrate OpenAI's Assistant API with React

Hello. Thank you for being here. This repository belongs to the youtube video The Power of OpenAI's Assistants in your App. If you haven't seen it, please consider watching the videos, to get a better understanding of this code.

Integrate OpenAI's Assistant API with React

Content

This repository includes all the code shown in the video.

The FastAPI REST Server is implemented in the main.py file. The React code is in the app folder.

How to run

  1. Install the dependencies
pip3 install -r requirements.txt
  1. Start the FastAPI server
python3 main.py
  1. Start the React app
cd app
npm install
npm start