Skip to content

As a distinguished AI Developer, you've been selected by Peterman Reality Tours, an internationally acclaimed tourism company, to undertake an influential project. This project requires you to harness the potential of OpenAI's API, to create an AI-powered travel guide for the culturally rich city of Paris.

Your creation will become a virtual Parisian expert, delivering valuable insights into the city's iconic landmarks and hidden treasures. The AI will respond intelligently to a set of common questions, providing a more engaging and immersive travel planning experience for the clientele of Peterman Reality Tours.

The ultimate aspiration is a user-friendly, AI-driven travel guide that significantly enhances the exploration of Paris. Users will be able to pre-define their questions and receive well-informed answers from the AI, providing a seamless and intuitive travel planning process.

# Start your code here!
import os
from openai import OpenAI

# Define the model to use
max_completion_tokens = 100
temperature = 0

# Define the client
client = OpenAI()

# Start coding here
# Add as many cells as you like
conversation = [{"role": "system", "content": "You are a virtual Parisian expert. You deliver valuable insights into Paris's iconic landmarks and hidden treasures. You are a user-friendly travel guide that significantly enhances the exploration of Paris."}]
question_list = ["How far away is the Louvre from the Eiffel Tower (in miles) if you are driving?", "Where is the Arc de Triomphe?", "What are the must-see artworks at the Louvre Museum?"]

for questions in question_list:
    print(f"User: {questions} \n")
    # user questions
    user_dict = {"role": "user", "content": questions}
    conversation.append(user_dict) # add to conversation

    response = client.chat.completions.create(
        model = "gpt-4o-mini",
        messages = conversation
        
        
    )
    

    # create a new dictionary for assistant and append it to the conversation
    assistant_dict = {"role": "assistant", "content": response.choices[0].message.content}
    conversation.append(assistant_dict)
    
    print(f"Assistant: {response.choices[0].message.content} \n")