ensemble_machine / instructions.py
diana3135
airbnb model
2d5489e
raw
history blame
3.99 kB
def group_a_instructions():
# return "This is Group A's experimental module, human - ai - sequential."
instructions ='''
You can now start the experiment by following these steps:
1. Read the task description in the "Task Description" box.
2. Enter your 3 ideas in the text box, starting each idea on a new line (Shift+Enter) with '1', '2', and '3'.
3. Click "Submit & See AI Output" to let AI enhance and refine your ideas.
4. Review the AI-enhanced final output in the "AI Output" box.
5. Click "Save Data" to finish.
Note: AI will build upon and improve your initial ideas.
You can try different inputs and click "Submit & See AI Output" to see how the AI integrates your ideas.
'''
return instructions
def group_b_instructions():
# return "This is Group B's experimental module, ai - human - sequential."
instructions = '''
You can now start the experiment by following these steps:
1. Read the task description in the "Task Description".
2. Click "Create" to see the AI-generated answer in the "AI Output" box.
3. Enter your 3 ideas integrating the AI-generated answer in the text box, starting each idea on a new line (Shift+Enter) with '1', '2', and '3'.
4. Click "Review" to view your input in the “Final Answer” box.
5. Click "Save Data" to finish.
Note: Your ideas entered in the text box will be the final answer.
'''
return instructions
def group_c_instructions():
# return "This is Group C's experimental module, parallel."
instructions ='''
You can now start the experiment by following these steps:
1. Read the task description in the "Task Description".
2. Enter your 3 ideas in the text box, starting each idea on a new line (Shift+Enter) with '1', '2', and '3'.
3. Click "Submit & See AI Output" to see first AI's independent suggestions in the "AI Output" box
4. Click "Merge" to see how the second AI has combined both perspectives into a final answer in the "Final Merged Output" box.
5. Click "Save Data" to finish.
Note: The second AI will consider both your ideas and those of the first AI to create an integrated solution.
You can try different inputs and click "Submit & See AI Output" and "Merge" to see how they are merged with the first AI's answer.
'''
return instructions
def invalid_group():
return "Invalid group, please check your identification code."
def notes_for_participants():
NOTES = """
You will receive basic compensation 💰 for a valid response of at least 50 words.
Your final answer will be evaluated. If it ranks in the top 30 of 600 participants, you’ll earn an extra 🎁 $15.
"""
return NOTES
def default_task_discription():
TASK_DESCRIPTION = """
Given Airbnb's current business model below, please propose three ideas to make it comply with the 17 SDGs.
Airbnb caters to two main groups:
1. Travelers: People looking for unique and affordable places to stay, including tourists, business travelers, and families who prefer a home-like experience over hotels.
2. Property Owners: Individuals who rent out their spaces, from single rooms to entire homes, to earn extra income.
Value for Guests and Hosts
- For Guests: Airbnb offers a variety of unique places to stay, providing a local and authentic experience with secure booking.
- For Hosts: Airbnb helps property owners make money by renting out their spaces and provides tools to list, price, and market their properties.
How Airbnb Operates
- User-Friendly Platform: Connects hosts with guests through an easy-to-use online marketplace.
- Safety and Support: Ensures safety with verification processes and offers reliable customer support.
- Technology and Marketing: Invests in technology to improve user experience and efficiency, and uses marketing to attract and retain users.
"""
return TASK_DESCRIPTION