DocuSage / tests /test_chain.py
nav13n's picture
first commit
c78c360
raw
history blame
266 Bytes
import unittest
from chain import rag_chain
class TestRAGChain(unittest.TestCase):
def test_rag_chain(self):
ans = rag_chain.invoke("Who are Meta's 'Directors' (i.e., members of the Board of Directors)?")
if __name__ == '__main__':
unittest.main()