Prompt and retrieval
This section is the one to use during real-time querying meetings. You can adapt the interface to your needs. We’ll focus on functionality.
Let’s look at the first prompt:
# initial question
prompt = "Millions of years ago, plants used energy from the sun to form what?"
# variant 1 similar
#prompt = "Eons ago, plants used energy from the sun to form what?"
# variant 2 divergent
#prompt = "Eons ago, plants used sun energy to form what?"
You will notice that there are two commented variants under the first prompt. Let’s clarify this:
initial question
is the exact text that comes from the initial dataset. It isn’t likely that an attendee in the meeting or a user will ask the question that way. But we can use it to verify if the system is working.variant 1
is similar to the initial question and could be asked.variant 2
diverges and may prove challenging.
We will...