├── .gitignore ├── README.md ├── config.yml ├── docker-compose.yml ├── dockerfile ├── requirements.txt └── src ├── __init__.py ├── agent ├── __init__.py ├── agent.py └── tests │ ├── __init__.py │ └── test_agent.py ├── main.py ├── parser ├── __init__.py ├── parser.py └── tests │ ├── __init__.py │ └── test_parser.py ├── template ├── __init__.py ├── base.txt ├── template.py └── tests │ ├── __init__.py │ ├── test_template.py │ └── test_template.txt └── utils ├── __init__.py ├── config.py └── tests ├── __init__.py └── test_config.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/config.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/dockerfile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/agent/agent.py -------------------------------------------------------------------------------- /src/agent/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/tests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/agent/tests/test_agent.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/main.py -------------------------------------------------------------------------------- /src/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/parser/parser.py -------------------------------------------------------------------------------- /src/parser/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/parser/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/parser/tests/test_parser.py -------------------------------------------------------------------------------- /src/template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/template/base.txt -------------------------------------------------------------------------------- /src/template/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/template/template.py -------------------------------------------------------------------------------- /src/template/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/tests/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/template/tests/test_template.py -------------------------------------------------------------------------------- /src/template/tests/test_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/template/tests/test_template.txt -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/utils/config.py -------------------------------------------------------------------------------- /src/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylejtobin/langchain_search_bot/HEAD/src/utils/tests/test_config.py --------------------------------------------------------------------------------