Looks like the system prompt is ignored

#3
by volkerjaenisch - opened

Question: 'Was für berühmte Gebäude gibt es in Brandenburg'

Embedding requirement for Python list in user query works:

prompt = ChatPromptTemplate.from_template(
"""
USER: Liefere Deine Ergebnisse als Python List zurück! {question}. ASSISTANT:
"""

Returns:

['Berliner Spandauer Schifffahrt', 'Brandenburgisches Landesmuseum', 'Brandenburgisches Landeshaus', 'Brandenburgisches Landesarchiv', 'Brandenburgisches Landesamt für Denkmalpflege', 'Brandenburgisches ]

But

prompt = ChatPromptTemplate.from_template(
"""
Liefere Deine Ergebnisse als Python List zurück!
USER: {question}. ASSISTANT:
"""

Returns:

  1. Schloss Sanssouci
    1. Brandenburger Tor
    2. Pfaueninsel
    3. Berliner Dom
    4. Reichstagsgebäude

Any help appreciated

Cheers,
Volker

Sign up or log in to comment