Skip to content

Commit

Permalink
Merge pull request #31 from dev-jpnobrega/feature/new-sql-chain
Browse files Browse the repository at this point in the history
fixed import
  • Loading branch information
dev-jpnobrega committed Nov 24, 2023
2 parents 9e20bfe + 4d7c7be commit e2ef04b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ai-agent-enterprise",
"description": "AI Agent simplifies the implementation and use of generative AI with LangChain",
"version": "0.0.17",
"version": "0.0.28",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
Expand Down
10 changes: 5 additions & 5 deletions src/services/chain/sql-database-chain.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { DEFAULT_SQL_DATABASE_PROMPT, SqlDatabaseChainInput } from "langchain/chains/sql_db.js";
import { RunnableSequence } from "langchain/schema/runnable.js";
import { StringOutputParser } from "langchain/schema/output_parser.js";
import { DEFAULT_SQL_DATABASE_PROMPT, SqlDatabaseChainInput } from "langchain/chains/sql_db";
import { RunnableSequence } from "langchain/schema/runnable";
import { StringOutputParser } from "langchain/schema/output_parser";
import { SqlDatabase } from "langchain/sql_db";
import { BaseLanguageModel } from "langchain/dist/base_language/index.js";
import { BaseChain, LLMChain } from "langchain/chains.js";
import { BaseLanguageModel } from "langchain/dist/base_language";
import { BaseChain } from "langchain/chains";
import { ChainValues } from "langchain/schema";
import { CallbackManagerForChainRun } from "langchain/callbacks";
import { PromptTemplate } from "langchain/prompts";
Expand Down

0 comments on commit e2ef04b

Please sign in to comment.