mirror of
https://github.com/hwchase17/langchain.git
synced 2025-10-23 11:16:58 +00:00
from https://arxiv.org/abs/2210.03629 still need to think if docstore abstraction makes sense
14 lines
412 B
Python
14 lines
412 B
Python
"""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"
|