Skip to content

Commit

Permalink
maroon brief summary
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasalmeida committed Oct 24, 2024
1 parent feaf1a7 commit 2be0a18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chat.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ async function chat(div,url='https://episphere.github.io/gemini/connectStudy.txt
let txtPrompt = div.querySelector('#txtPrompt')
divConverse.appendChild(divExchange)
conversation = await converse([],url)
conversation.push('write summary')
conversation.push('write brief summary')
conversation = await converse(conversation)

divExchange.innerHTML=`<h3>${conversation[3]}</h3>`
divExchange.innerHTML=`<span style="color:maroon">${conversation[3]}</span><hr>`
txtPrompt.value=''
txtPrompt.focus()
txtPrompt.onkeyup = async function(ev) {
Expand Down

0 comments on commit 2be0a18

Please sign in to comment.