This change remove `BaseComponent`'s: - run_raw - run_batch_raw - run_document - run_batch_document - is_document - is_batch Each component is expected to support multiple types of inputs and a single type of output. Since we want the component to work out-of-the-box with both standardized and customized use cases, supporting multiple types of inputs are expected. At the same time, to reduce the complexity of understanding how to use a component, we restrict a component to only have a single output type. To accommodate these changes, we also refactor some components to remove their run_raw, run_batch_raw... methods, and to decide the common output interface for those components. Tests are updated accordingly. Commit changes: * Add kwargs to vector store's query * Simplify the BaseComponent * Update tests * Remove support for Python 3.8 and 3.9 * Bump version 0.3.0 * Fix github PR caching still use old environment after bumping version --------- Co-authored-by: ian <ian@cinnamon.is>
65 lines
2.2 KiB
Python
65 lines
2.2 KiB
Python
import pytest
|
|
|
|
from kotaemon.documents.base import Document
|
|
from kotaemon.post_processing.extractor import RegexExtractor
|
|
from kotaemon.prompt.base import BasePromptComponent
|
|
from kotaemon.prompt.template import PromptTemplate
|
|
|
|
|
|
def test_set_attributes():
|
|
template = PromptTemplate("str = {s}, int = {i}, doc = {doc}, comp = {comp}")
|
|
doc = Document(text="Helloo, Alice!")
|
|
comp = RegexExtractor(
|
|
pattern=r"\d+", output_map={"1": "One", "2": "Two", "3": "Three"}
|
|
)
|
|
comp.set_run(kwargs={"text": "This is a test. 1 2 3"}, temp=True)
|
|
|
|
prompt = BasePromptComponent(template=template, s="Alice", i=30, doc=doc, comp=comp)
|
|
assert prompt.s == "Alice"
|
|
assert prompt.i == 30
|
|
assert prompt.doc == doc
|
|
assert prompt.comp == comp
|
|
|
|
|
|
def test_check_redundant_kwargs():
|
|
template = PromptTemplate("Hello, {name}!")
|
|
prompt = BasePromptComponent(template, name="Alice")
|
|
with pytest.warns(UserWarning, match="Keys provided but not in template: age"):
|
|
prompt._BasePromptComponent__check_redundant_kwargs(name="Alice", age=30)
|
|
|
|
|
|
def test_check_unset_placeholders():
|
|
template = PromptTemplate("Hello, {name}! I'm {age} years old.")
|
|
prompt = BasePromptComponent(template, name="Alice")
|
|
with pytest.raises(ValueError):
|
|
prompt._BasePromptComponent__check_unset_placeholders()
|
|
|
|
|
|
def test_validate_value_type():
|
|
template = PromptTemplate("Hello, {name}!")
|
|
prompt = BasePromptComponent(template)
|
|
with pytest.raises(ValueError):
|
|
prompt._BasePromptComponent__validate_value_type(name={})
|
|
|
|
|
|
def test_run():
|
|
template = PromptTemplate("str = {s}, int = {i}, doc = {doc}, comp = {comp}")
|
|
doc = Document(text="Helloo, Alice!")
|
|
comp = RegexExtractor(
|
|
pattern=r"\d+", output_map={"1": "One", "2": "Two", "3": "Three"}
|
|
)
|
|
comp.set_run(kwargs={"text": "This is a test. 1 2 3"}, temp=True)
|
|
|
|
prompt = BasePromptComponent(template=template, s="Alice", i=30, doc=doc, comp=comp)
|
|
|
|
result = prompt()
|
|
|
|
assert result.text == "str = Alice, int = 30, doc = Helloo, Alice!, comp = ['One']"
|
|
|
|
|
|
def test_set_method():
|
|
template = PromptTemplate("Hello, {name}!")
|
|
prompt = BasePromptComponent(template)
|
|
prompt.set(name="Alice")
|
|
assert prompt.name == "Alice"
|