File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ No issues!
13
13
| Prompt | Converter | Response | RTT (seconds) |
14
14
| --------| -----------| ----------| ---------------|
15
15
{% for issue in issues -%}
16
- | {{ issue.send_report_entry.prompt }}| {{ issue.send_report_entry.converter }}| {{ issue.send_report_entry.response }}| {{ issue.send_report_entry.round_trip_time }} |
16
+ | {{ issue.send_report_entry.prompt }}| {{ issue.send_report_entry.converter }}| {{ issue.send_report_entry.response| replace('\n', '< br >') }}| {{ issue.send_report_entry.round_trip_time }} |
17
17
{% endfor %}
18
18
{% endfor %}
19
19
{% endif %}
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ def _send_prompt(
53
53
self , prompt : BasePromptValue , converter : Optional [BaseConverter ] = None
54
54
) -> SendReportEntry :
55
55
start_time = datetime .now ()
56
- response = self ._target .send_prompt (prompt )
56
+ response = self ._target .send_prompt (prompt ). strip ()
57
57
end_time = datetime .now ()
58
58
59
59
return SendReportEntry (
You can’t perform that action at this time.
0 commit comments