Skip to content

Commit 2cf6b8c

Browse files
update
1 parent 4e1ab27 commit 2cf6b8c

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

next.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
output: 'export',
4-
basePath: process.env.NODE_ENV === "production" ? "/xlang-website" : "",
4+
basePath: process.env.NODE_ENV === "production" ? "/" : "",
55
images: {
66
unoptimized: true,
7-
path: process.env.NODE_ENV === "production" ? "/xlang-website" : "",
7+
path: process.env.NODE_ENV === "production" ? "/" : "",
88
},
99
reactStrictMode: true,
1010
swcMinify: true,

pages/components/Welcome/Welcome.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@ const Welcome = () => {
1616
<span style={{ color: '#643EAD' }}> G</span>rounding (XLANG)
1717
</span> Lab!
1818
We are part of the <a href="https://nlp.cs.hku.hk/" target="_blank" className="underline">HKU NLP Group</a> at the University of Hong Kong.
19-
We focus on building language model agents that transform (“grounding”) language instructions into code or actions executable in real-world environments,
20-
including databases (data agent), web applications (plugins/web agent), and the physical world (robotic agent) etc,.
21-
XLANG lies at the heart of language model agents or natural language interfaces that can interact with and learn from these real-world environments to facilitate human interaction with data analysis,
22-
web applications, and robotic instruction through conversation.
23-
Recent advances in XLANG incorporate techniques such as LLM + external tools, code generation, semantic parsing, efficient and generalizable LLMs, and dialog or interactive systems.
19+
We focus on developing grounded AI agents that empower users to use language to interact with digital and physical environments to carry out real-world tasks.
20+
Our systems ground language and perception into code and actions executable in the corresponding environments, including databases (data/coding agent), computers (computer use agent), and the physical world (robotic agent) etc,.
21+
Through these agents, we aim to enable non-experts to access complex systems such as databases, software, and robots while unlocking functionalities across existing applications and physical systems that dramatically expand AI capabilities.
2422
</p>
2523
<div className='col-span-4'>
2624
<img

pages/team.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ const Team = ({
6262
const Intro = () => {
6363
return (
6464
<div className='flex flex-col gap-2'>
65-
<h1 className='text-2xl font-[500]'>Team</h1>
65+
{/* <h1 className='text-2xl font-[500]'>Team</h1>
6666
<p className="leading-7">
6767
Our research team is dedicated to crafting language model agents that link language instructions to executable code or actions, enabling the execution of complex tasks in real-world scenarios. Consisting of a diverse and interdisciplinary group, our team merges expertise from fields such as NLP, HCI, DB, CV, VIS, Robotics, UI, DataSci, and Code/PL. This collaborative approach lets us explore our investigations from multiple angles, fostering a thorough understanding of the subject.
68-
</p>
68+
</p> */}
6969
{/* <a href="https://forms.gle/3Ki9ectMB5D31F8g8" target="_blank" rel="noopener noreferrer">*/}
7070
{/*<button className='btn btn-secondary text-xs py-1 w-24'>Join Us</button>*/}
7171
{/* </a>*/}

utils/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const publicFilePath = (path: string) => {
22
// For deployment to github pages
33
if (process.env.NODE_ENV === "production") {
4-
return `/xlang-website${path}`;
4+
return `/${path}`;
55
} else {
66
return path;
77
}

0 commit comments

Comments
 (0)