Class SQLDatabaseSequentialChain

java.lang.Object
com.hw.langchain.chains.base.Chain
com.hw.langchain.chains.sql.database.base.SQLDatabaseSequentialChain

public class SQLDatabaseSequentialChain extends Chain
Chain for querying SQL database that is a sequential chain.
 The chain is as follows:
 1. Based on the query, determine which tables to use.
 2. Based on those tables, call the normal SQL database chain.

 This is useful in cases where the number of tables in the database is large.
 
Author:
HamaWhite