Skip to content

Commit

Permalink
update code
Browse files Browse the repository at this point in the history
  • Loading branch information
HamaWhiteGG committed Oct 5, 2023
1 parent e6cbcd0 commit 8d06c19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public class SqlChainExample {

public static void main(String[] args) {
var database = SQLDatabase.fromUri("jdbc:mysql://127.0.0.1:3306/demo", "root", "123456");
var database = SQLDatabase.fromUri("jdbc:mysql://127.0.0.1:3306/demo", "root", "root@123456");

var llm = OpenAI.builder()
.temperature(0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
public class SqlSequentialChainExample {

public static void main(String[] args) {
var database = SQLDatabase.fromUri("jdbc:mysql://127.0.0.1:3306/demo", "root", "123456");
var database = SQLDatabase.fromUri("jdbc:mysql://127.0.0.1:3306/demo", "root", "root@123456");

var llm = OpenAI.builder()
.temperature(0)
Expand Down

0 comments on commit 8d06c19

Please sign in to comment.