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
model = "gpt-4o-mini"
# Define the client
client = OpenAI()
# Start coding here
conversation = [
{"role": "system", "content": 'You are a knowledgeable Paris tourist guide assistant. Provide helpful, accurate, and concise information about Paris attractions, distances, and recommendations. Keep responses informative but brief.'}
]
questions = [
'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 q in questions:
print ("Questions: ", q)
dict_q = {'role': 'user', 'content': q}
conversation.append(dict_q)
response = client.chat.completions.create (
model = model,
messages=conversation,
max_tokens=100,
temperature=0.0
)
# Extract the assistant's response
assistant_dict = { 'role': 'assistant', 'content': response.choices[0].message.content }
conversation.append(assistant_dict)
print ("Assistant: ", response.choices[0].message.content, "\n")