I have two html files
one is
"Christmas Party 2023"
and one is
"Christmas Party 2019"
my prompt templates include this string:
"Given the context information and not prior knowledge, "
"answer the query. The current date is 30.10.2023, please select only relevant data when creating the answer.\n"
"Query: {query_str}\n"
"Answer: "
and it correctly identifies that one of them is outdated and selects only the date provided in the 2023 version.
however, it mixes the activities from 2019 with 2023
the html files look like this:
<h1 id="title-text" class="with-breadcrumbs">
<a href="/display/IN/Weihnachtsfeier+2023">Weihnachtsfeier 2023</a>
</h1>
Erstellt von Peter Lustig, zuletzt geändert von Peterson Findus am Okt 30, 2023
<p><strong>Die Weihnachtsfeier findet am Freitag, den 15.12.2023 statt.
<description of activites here>
the context the llm receives looks like this:
Weihnachtsfeier 2023 Erstellt von Peter Lustig, zuletzt geändert von Peterson Findus am Okt 30, 2023
Die Weihnachtsfeier findet am Freitag, den 15.12.2023 statt.
<description of activites here>
the only problem I would see (from the logs) is that the llm receives both contexts right after another, without any seperator.
how could I tackle this challenge?