adriiita commited on
Commit
d51c28f
·
verified ·
1 Parent(s): 22fe211

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -23,7 +23,18 @@ def store_conversation(user_input, bot_response):
23
  "object": "block",
24
  "type": "paragraph",
25
  "paragraph": {
26
- "rich_text": [{"type": "text", "text": {"content": f"User: {user_input}"}}]
 
 
 
 
 
 
 
 
 
 
 
27
  }
28
  },
29
  {
 
23
  "object": "block",
24
  "type": "paragraph",
25
  "paragraph": {
26
+ "rich_text": [
27
+ {
28
+ "type": "text",
29
+ "text": {"content": "User: "},
30
+ "annotations": {"bold": True}
31
+ },
32
+ {
33
+ "type": "text",
34
+ "text": {"content": user_input},
35
+ "annotations": {"bold": True}
36
+ }
37
+ ]
38
  }
39
  },
40
  {