Harrison/add natbot (#18)

This commit is contained in:
Harrison Chase
2022-10-24 19:56:26 -07:00
committed by GitHub
parent 18aeb72012
commit 1ef3ab4d0e
7 changed files with 749 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
"""Test functionality related to natbot."""
from typing import List, Optional
from langchain.chains.natbot.base import NatBotChain
from langchain.llms.base import LLM
class FakeLLM(LLM):
"""Fake LLM wrapper for testing purposes."""
def __call__(self, prompt: str, stop: Optional[List[str]] = None) -> str:
"""Return `foo` if longer than 10000 words, else `bar`."""
if len(prompt) > 10000:
return "foo"
else:
return "bar"
def test_proper_inputs() -> None:
"""Test that natbot shortens inputs correctly."""
nat_bot_chain = NatBotChain(llm=FakeLLM(), objective="testing")
url = "foo" * 10000
browser_content = "foo" * 10000
output = nat_bot_chain.run(url, browser_content)
assert output == "bar"
def test_variable_key_naming() -> None:
"""Test that natbot handles variable key naming correctly."""
nat_bot_chain = NatBotChain(
llm=FakeLLM(),
objective="testing",
input_url_key="u",
input_browser_content_key="b",
output_key="c",
)
output = nat_bot_chain.run("foo", "foo")
assert output == "bar"

View File

@@ -12,7 +12,7 @@ class FakeLLM(LLM):
self._queries = queries
def __call__(self, prompt: str, stop: Optional[List[str]] = None) -> str:
"""Return `foo` if no stop words, otherwise `bar`."""
"""First try to lookup in queries, else return 'foo' or 'bar'."""
if self._queries is not None:
return self._queries[prompt]
if stop is None: