openai/chatkit-python
Publicmirrored from https://github.com/openai/chatkit-pythonAvailable
tests/helpers/email_data.py
60lines · modeblame
f688d870victor-openai8 months ago | 1 | """ |
| 2 | Email content data for the sample widget. | |
| 3 | """ | |
| 4 | | |
| 5 | CHATKIT_ROADMAP = """Hey Zach, | |
| 6 | | |
| 7 | Hope you're doing well! I wanted to give you a quick update on our ChatKit roadmap progress and get your thoughts on a few key items. | |
| 8 | | |
| 9 | We've made solid progress on the widget system - the interactive components are working great and the demos are looking polished. The source annotations feature is about 70% complete and should be ready for testing next week. | |
| 10 | | |
| 11 | A few questions for you: | |
| 12 | - How are you feeling about the current mobile experience? I know we flagged some scrolling issues | |
| 13 | - Should we prioritize the attachment error handling before the next release? | |
| 14 | - Any thoughts on the enhanced widgets roadmap item? | |
| 15 | | |
| 16 | Looking forward to hearing your feedback. Let me know if you want to hop on a quick call to discuss. | |
| 17 | | |
| 18 | Best, | |
| 19 | David""" | |
| 20 | | |
| 21 | FLIGHT_REMINDER = """Hi there, | |
| 22 | | |
| 23 | Your upcoming flight to San Francisco is just around the corner! Here are some important reminders to help ensure your trip goes smoothly: | |
| 24 | | |
| 25 | **Flight Details:** | |
| 26 | • Flight: UA 1234 | |
| 27 | • Date: July 25, 2024 | |
| 28 | • Departure: 8:45 AM from LAX | |
| 29 | • Arrival: 10:30 AM at SFO | |
| 30 | | |
| 31 | **Before You Go:** | |
| 32 | ✓ Check in online (available 24 hours before departure) | |
| 33 | ✓ Verify your ID is current and matches your ticket | |
| 34 | ✓ Review carry-on restrictions | |
| 35 | ✓ Download the United app for real-time updates | |
| 36 | | |
| 37 | **Weather Update:** | |
| 38 | San Francisco will be partly cloudy with highs around 68°F. Don't forget a light jacket! | |
| 39 | | |
| 40 | Have a great trip! | |
| 41 | | |
| 42 | The United Airlines Team""" | |
| 43 | | |
| 44 | BRAINSTORM_SESSION = """Hey team, | |
| 45 | | |
| 46 | While I'm in town this week, I'd love to organize a brainstorm session around our widget strategy. I've been thinking about some interesting directions we could take the interactive components. | |
| 47 | | |
| 48 | Here's what I'm envisioning: | |
| 49 | • 90-minute working session | |
| 50 | • Focus on widget UX patterns and developer experience | |
| 51 | • Whiteboard some ideas for enhanced widget types | |
| 52 | • Maybe tackle the mobile widget experience too | |
| 53 | | |
| 54 | I'm free Thursday afternoon or Friday morning. Let me know what works for everyone's schedule. | |
| 55 | | |
| 56 | Also, if anyone has specific widget pain points or feature requests, bring them along - would be great to address real developer needs. | |
| 57 | | |
| 58 | Excited to collaborate in person! | |
| 59 | | |
| 60 | Tyler""" |