19 lines
588 B
Markdown
19 lines
588 B
Markdown
```python exec
|
|
from pcweb.constants import CHAT_APP_URL
|
|
```
|
|
|
|
# Interactive Tutorial: AI Chat App
|
|
|
|
This tutorial will walk you through building an AI chat app with Reflex. This app is fairly complex, but don't worry - we'll break it down into small steps.
|
|
|
|
You can find the full source code for this app [here]({CHAT_APP_URL}).
|
|
|
|
## What You'll Learn
|
|
|
|
In this tutorial you'll learn how to:
|
|
|
|
1. Install `reflex` and set up your development environment.
|
|
2. Create components to define and style your UI.
|
|
3. Use state to add interactivity to your app.
|
|
4. Deploy your app to share with others.
|