This commit is contained in:
Slipstream 2025-04-28 23:17:30 -06:00
parent 48421127fe
commit a4d69368b1
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -228,7 +228,7 @@ async def get_ai_response(cog: 'GurtCog', message: discord.Message, model_name:
("system", system_prompt_text),
MessagesPlaceholder(variable_name="history"), # Matches agent input
("user", "{input}"), # User input placeholder
MessagesPlaceholder(variable_name="intermediate_steps"), # Matches agent input
# MessagesPlaceholder(variable_name="intermediate_steps"), # Removed as per LangChain troubleshooting
])
# --- 2. Prepare Tools ---