Skip to content

Commit 92107a8

Browse files
update papers grouping and modify alumni style
1 parent 64dbc4a commit 92107a8

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

data/research/papers.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
"image": "/research/openagents.png"
133133
},
134134
{
135-
"category": ["DigitalAIAgents"],
135+
"category": ["Others"],
136136
"title": "Does Collaborative Human-LM Dialogue Generation Help Information Extraction from Human Dialogues?",
137137
"authors": "Bo-Ru Lu, Nikita Haduong, Chia-Hsuan Lee, Zeqiu Wu, Hao Cheng, Paul Koester, Jean Utke, Tao Yu, Noah A. Smith, Mari Ostendorf",
138138
"publication": "COLM 2024",
@@ -144,7 +144,7 @@
144144
"image": "/research/does.png"
145145
},
146146
{
147-
"category": ["PhysicalAIAgents"],
147+
"category": ["PhysicalAIAgents","DigitalAIAgents"],
148148
"title": "Lemur: Harmonizing Natural Language and Code for Language Agents",
149149
"authors": "Yiheng Xu*, Hongjin Su*, Chen Xing*, Boyu Mi, Qian Liu, Weijia Shi, Binyuan Hui, Fan Zhou, Yitao Liu, Tianbao Xie, Zhoujun Cheng, Siheng Zhao, Lingpeng Kong, Bailin Wang, Caiming Xiong, Tao Yu",
150150
"publication": "ICLR 2024 Spotlight",

interface/research.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ export type PaperCategory =
44
// | 'CodeGeneration'
55
| 'CodeGeneration'
66
| 'DigitalAIAgents'
7-
| 'PhysicalAIAgents';
7+
| 'PhysicalAIAgents'
8+
| 'Others';
89

910
export interface Paper {
1011
image?: string;

pages/publications.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const PaperCategoryNames: Record<PaperCategory, string> = {
1515
CodeGeneration: 'Code Generation for Data Science',
1616
DigitalAIAgents: 'Grounding Language in the Digital World',
1717
PhysicalAIAgents: 'Grounding Language in the Physical World',
18+
Others: 'Others',
1819
};
1920

2021
const Publications = ({

pages/team.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ const Alumni = ({ alumni }: { alumni: Alumni[] }) => {
169169
return (
170170
<div>
171171
<h1 className='text-2xl font-[500] mb-6'>Student & Visitor Alumni</h1>
172-
<div className='text-sm grid grid-cols-3 gap-6'>
172+
<div className='text-sm grid grid-cols-2 gap-6'>
173173
{alumni.map((alumnus, index) => (
174174
<div key={index}>
175175
{alumnus.link ? (

0 commit comments

Comments
 (0)