Harrison/add react chain (#24)

from https://arxiv.org/abs/2210.03629

still need to think if docstore abstraction makes sense
This commit is contained in:
Harrison Chase
2022-10-26 21:02:23 -07:00
committed by GitHub
parent 61a51b7a76
commit ce7b14b843
15 changed files with 616 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
"""Integration test for self ask with search."""
from langchain.chains.react.base import ReActChain
from langchain.llms.openai import OpenAI
def test_react() -> None:
"""Test functionality on a prompt."""
llm = OpenAI(temperature=0)
react = ReActChain(llm=llm)
question = "Were Scott Derrickson and Ed Wood of the same nationality?"
output = react.run(question)
assert output == "yes"