Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -41,9 +41,16 @@ Multimodal Representational Learning: This research can be broadly understood as
|
|
41 |
|
42 |
At Dr. Dale's Communicative-Mind (Co-Mind) Lab, I actively collaborate with social neuroscientists as DNN modelers to streamline the integration of neurosignals (fNIRS) with other behavioral signals (facial expressions, body movements), bridging the analysis of these raw signals with high-level social constructs (shared reality, connectedness, etc.)."""
|
43 |
|
44 |
-
messages = [{"role": "system", "content":
|
45 |
-
messages = messages.append({"role": "user", "content": research)
|
|
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
for val in history:
|
48 |
if val[0]:
|
49 |
messages.append({"role": "user", "content": val[0]})
|
|
|
41 |
|
42 |
At Dr. Dale's Communicative-Mind (Co-Mind) Lab, I actively collaborate with social neuroscientists as DNN modelers to streamline the integration of neurosignals (fNIRS) with other behavioral signals (facial expressions, body movements), bridging the analysis of these raw signals with high-level social constructs (shared reality, connectedness, etc.)."""
|
43 |
|
44 |
+
messages = [{"role": "system", "content": system_message}]
|
45 |
+
messages = messages.append({"role": "user", "content": "Tell me more about your research"})
|
46 |
+
messages = messages.append({"role": "user", "content": research})
|
47 |
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
for val in history:
|
55 |
if val[0]:
|
56 |
messages.append({"role": "user", "content": val[0]})
|