|
|
|
|
|
by simonw
936 days ago
|
|
The key problem is that an LLM can't distinguish between instructions from a trusted source and instructions embedded in other text it is exposed to. You might build your AI assistant with pseudo code like this: prompt = "Summarize the following messages:"
emails = get_latest_emails(5)
for email in emails:
prompt += email.body
response = gpt4(prompt)
That first line was your instruction to the LLM - but there's no current way to be 100% certain that extra instructions in the bodies of those emails won't be followed instead. |
|