noopener">Incontri di geometria algebrica ed aritmetica Milano – Pisa<br></a>Department
of Mathematics, Pisa. November 16 – 17, 2022.</p>
```
We compose the following conversation with an LLM, things between `{{ ... }}` are templates that will be replaced before starting generating.
```
INPUT:
<p><ahref="http://www.crm.sns.it/event/507/"target="_blank"rel="noreferrer noopener">Statistical and Computational Aspects of Dynamics<br></a>Organized by Buddhima Kasun Fernando Akurugodage (Centro di ricerca matematica Ennio De Giorgi – SNS), Paolo Giulietti, and Tanja Isabelle Schindler (Universität Wien, Austria). Centro De Giorgi – SNS, Pisa. December 13 – 16, 2022.</p>
OUTPUT:
{
"title": "Statistical and Computational Aspects of Dynamics",
"url": "http://www.crm.sns.it/event/507/",
"description": "Organized by Buddhima Kasun Fernando Akurugodage (Centro di ricerca matematica Ennio De Giorgi – SNS), Paolo Giulietti, and Tanja Isabelle Schindler (Universität Wien, Austria). Location: Centro De Giorgi - SNS, Pisa.",
"startDate": "2022-12-13",
"endDate": "2022-12-16"
}
INPUT:
{{ conference_html }}
OUTPUT:
```
And the LLM will complete this conversation with a json representation of the `{{ conference_html }}`. The first example is needed to show the model how to convert information from the input html data.
HTML_EXAMPLE=r"""<p><a href="http://www.crm.sns.it/event/507/" target="_blank" rel="noreferrer noopener">Statistical and Computational Aspects of Dynamics<br></a>Organized by Buddhima Kasun Fernando Akurugodage (Centro di ricerca matematica Ennio De Giorgi – SNS), Paolo Giulietti, and Tanja Isabelle Schindler (Universität Wien, Austria). Centro De Giorgi – SNS, Pisa. December 13 – 16, 2022.</p>"""
OUTPUT_EXAMPLE=json.dumps(
{"title":"Statistical and Computational Aspects of Dynamics","url":"http://www.crm.sns.it/event/507/","description":"Organized by Buddhima Kasun Fernando Akurugodage (Centro di ricerca matematica Ennio De Giorgi – SNS), Paolo Giulietti, and Tanja Isabelle Schindler (Universität Wien, Austria). Location: Centro De Giorgi - SNS, Pisa.","startDate":"2022-12-13","endDate":"2022-12-16"}
)
OUTPUT_EXAMPLE=json.dumps({
"title":"Statistical and Computational Aspects of Dynamics",
"url":"http://www.crm.sns.it/event/507/",
"description":"Organized by Buddhima Kasun Fernando Akurugodage (Centro di ricerca matematica Ennio De Giorgi – SNS), Paolo Giulietti, and Tanja Isabelle Schindler (Universität Wien, Austria). Location: Centro De Giorgi - SNS, Pisa.",