Spaces:
Sleeping
Sleeping
File size: 3,446 Bytes
afa26c5 d248439 afa26c5 283e986 e7d986c afa26c5 e7d986c afa26c5 283e986 afa26c5 283e986 afa26c5 d248439 283e986 afa26c5 a924fe5 d6520c8 a924fe5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | 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 |