This commit is contained in:
Sandipsinh Rathod 2024-10-13 11:25:09 -04:00
parent 12149a0469
commit fac0dcc257
No known key found for this signature in database

@ -18,7 +18,7 @@ pub struct Question<'a> {
impl<'a> Question<'a> {
pub fn process(qry: &str, md: &str) -> String {
let qry = format!("{} on the text above", qry);
let qry = format!("{} on the text/webpage above", qry);
let qry = BASE.replace("{{question}}", &qry);
let qry = qry.replace("{{input}}", md);
qry