Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Tortuga-AM authored Mar 2, 2024
1 parent 68d1416 commit f38ff9d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel=”stylesheet” href=”htpps://pyscript.net/alpha/pyscript.css” />
<script defer src="script.js"></script>
<script defer src=”htpps://pyscript.net/alpha/pyscript.js”></script>
<title>Multi Step Form</title>
</head>
<body>
Expand Down Expand Up @@ -48,9 +50,12 @@ <h3>Personal Info</h3>
</form>
<form id="form3">
<h3>Social Links</h3>
<input type="text" placeholder="Facebook" />
<input type="text" placeholder="Twitter" />
<input type="text" placeholder="Github" />
<py-script>
genai.configure(api_key=API) # Tells gen AI which API to use
model = genai.GenerativeModel('gemini-pro') # Assigns which model is in use and names it model
chat = model.start_chat(history=[])
response = chat.send_message()
</py-script>
<div class="btn_box">
<button id="back2" type="button">Back</button>
</div>
Expand Down

0 comments on commit f38ff9d

Please sign in to comment.