Spaces:
Sleeping
Sleeping
| def group_a_instructions(): | |
| # return "This is Group A's experimental module, human - ai - sequential." | |
| instructions =''' | |
| Congratulations! You are verified. | |
| You can now start the experiment by following these steps: | |
| 1. Carefully read the contents in the "Task Description" box. | |
| 2. Enter your ideas in the "Human Input" box. | |
| 3. Click the "Create" button to see the AI-refined answer in the "AI Modified Output" box. | |
| 4. Click the "Evaluate" button to view the evaluations of the answer. | |
| 5. Click the "Save Data" button to finish the experiment. | |
| ''' | |
| return instructions | |
| def group_b_instructions(): | |
| # return "This is Group B's experimental module, ai - human - sequential." | |
| instructions = ''' | |
| Congratulations! You are verified. | |
| You can now start the experiment by following these steps: | |
| 1. Carefully read the contents in the "Task Description" box. | |
| 2. Click the "Create" button to see the AI-generated answer in the "AI Initial Answer" box. | |
| 3. Enter your suggestions for the AI-generated answer in the "Modification Suggestions" box. | |
| 4. Click the "Modify" button to see the final answer in the "Final Answer" box. | |
| 5. Click the "Evaluate" button to view the evaluations of the answer. | |
| 6. Click the "Save Data" button to finish the experiment. | |
| ''' | |
| return instructions | |
| def group_c_instructions(): | |
| # return "This is Group C's experimental module, parallel." | |
| instructions =''' | |
| Congratulations! You are verified. | |
| You can now start the experiment by following these steps: | |
| 1. Carefully read the contents in the "Task Description" box. | |
| 2. Enter your ideas in the "Human Input" box. | |
| 3. Click the "Create" button to see the AI-generated answer in the "AI Initial Output" box and the merged answer in the "Final Merged Output" box. | |
| 4. Click the "Evaluate" button to view the evaluations of the answer. | |
| 5. Click the "Save Data" button to finish the experiment. | |
| ''' | |
| return instructions | |
| def invalid_group(): | |
| return "Invalid group, please check your identification code." | |
| def default_task_discription(): | |
| TASK_DESCRIPTION = """ | |
| Given Airbnb's current business model below, please propose ideas to make it comply with the 17 SDGs. | |
| Airbnb is a peer-to-peer short-term rental platform serving two primary customer segments: travelers and property owners. | |
| Here's how the business model currently works: | |
| - Travelers: Airbnb serves tourists, business travelers, and families looking for unique, cost-effective accommodations. Many prefer Airbnb for its personalized, home-like experience compared to traditional hotels. | |
| - Property Owners: Airbnb enables property owners, from single-room hosts to entire home renters, to generate income from underutilized properties. Hosts benefit from Airbnb's tools for secure bookings, easy listing management, pricing, and marketing support. | |
| - Core Operations: Airbnb operates a user-friendly platform that connects hosts with guests. Key activities include managing the platform, ensuring safety through verification, providing reliable customer support, and continuously enhancing technology to improve user experience. | |
| - Market Reach and Partnerships: Airbnb expands its market reach through targeted marketing and partnerships with local tourism agencies, helping to promote the platform within local communities. | |
| """ | |
| return TASK_DESCRIPTION |