JAN PABLO II

 avatar
unknown
html
3 years ago
964 B
5
Indexable
import os
import openai

openai.api_key = os.getenv("OPENAI_API_KEY")

response = openai.Completion.create(
  model="text-davinci-003",
  prompt="Create a website about jan pawel \n\nWelcome to Jan Pawel's website! \n\nJan Pawel was a Polish political leader who served as the leader of the Solidarity movement in Poland from 1989 to 1990. He was honored with the Nobel Peace Prize in 1983 for his efforts to create a peaceful and democratic society in Poland.\n\nOn this website, you will find information about Jan Pawel's life, his work as leader of Solidarity, and his legacy. We also have an interactive timeline of his life and accomplishments, a collection of photos, videos, and audio recordings featuring him, and an archive of his speeches and writings.\n\nWe invite you to explore this website and learn more about Jan Pawel's inspirational life and legacy.",
  temperature=0.7,
  max_tokens=256,
  top_p=1,
  frequency_penalty=0,
  presence_penalty=0
)
Editor is loading...