Skip to content

Commit

Permalink
Adjusted formatting of pre chain (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitead authored Sep 12, 2023
1 parent 0598fa7 commit d04b9af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion paperqa/docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ async def aquery(
pre = await chain.arun(
question=answer.question, callbacks=get_callbacks("pre")
)
answer.context = pre + "\n\n" + answer.context
answer.context = answer.context + "\n\nExtra background information:" + pre
bib = dict()
if len(answer.context) < 10 and not self.memory:
answer_text = (
Expand Down
2 changes: 1 addition & 1 deletion paperqa/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.10.0"
__version__ = "3.11.0"

0 comments on commit d04b9af

Please sign in to comment.