We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c841cc3 commit a500ab7Copy full SHA for a500ab7
nemoguardrails/library/self_check/output_check/actions.py
@@ -52,6 +52,7 @@ async def self_check_output(
52
_MAX_TOKENS = 3
53
bot_response = context.get("bot_message")
54
user_input = context.get("user_message")
55
+ bot_thinking = context.get("bot_thinking")
56
57
task = Task.SELF_CHECK_OUTPUT
58
@@ -61,6 +62,7 @@ async def self_check_output(
61
62
context={
63
"user_input": user_input,
64
"bot_response": bot_response,
65
+ "bot_thinking": bot_thinking,
66
},
67
)
68
stop = llm_task_manager.get_stop_tokens(task=task)
0 commit comments