alexschedrov commited on
Commit
ae33f3b
·
verified ·
1 Parent(s): c187244

Fix extra space issue and LLM hallucinating

Browse files

The extra space makes LLM hallucinate.

With that space, the answer is received:
```
Final Answer: The current weather in London is not available, but the weather in London is sunny with low temperatures.
```

Without:
```
Final Answer: The current weather in London is sunny with low temperatures.
```

Files changed (1) hide show
  1. dummy_agent_library.ipynb +1 -1
dummy_agent_library.ipynb CHANGED
@@ -378,7 +378,7 @@
378
  "Thought: I now know the final answer\n",
379
  "Final Answer: the final answer to the original input question\n",
380
  "\n",
381
- "Now begin! Reminder to ALWAYS use the exact characters `Final Answer:` when you provide a definitive answer. \n",
382
  "<|eot_id|><|start_header_id|>user<|end_header_id|>\n",
383
  "What's the weather in London ?\n",
384
  "<|eot_id|><|start_header_id|>assistant<|end_header_id|>\n",
 
378
  "Thought: I now know the final answer\n",
379
  "Final Answer: the final answer to the original input question\n",
380
  "\n",
381
+ "Now begin! Reminder to ALWAYS use the exact characters `Final Answer:` when you provide a definitive answer.\n",
382
  "<|eot_id|><|start_header_id|>user<|end_header_id|>\n",
383
  "What's the weather in London ?\n",
384
  "<|eot_id|><|start_header_id|>assistant<|end_header_id|>\n",