Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: wording fix #285

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion playground/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import './global.css'


export const metadata: Metadata = {
title: "TEN Agent",
title: "TEN Agent | Real-Time Multimodal AI Agent",
description: "TEN Agent is an open-source multimodal AI agent that can speak, see, and access a knowledge base(RAG).",
appleWebApp: {
capable: true,
Expand Down
2 changes: 1 addition & 1 deletion playground/src/components/loginCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const LoginCard = () => {
<div className={styles.title}>
{/* <LogoIcon transform="scale(1.5 1.5)"></LogoIcon> */}
<span className={styles.title} >TEN Agent</span>
<span className={styles.text}>A realtime multimodal AI agent powered by <a href="https://theten.ai" >TEN</a></span>
<span className={styles.text}>A Real-Time Multimodal AI Agent Powered by <a href="https://theten.ai" >TEN</a></span>
</div>
<div className={styles.section}>
<input placeholder="User Name" value={userName} onChange={onUserNameChange} ></input>
Expand Down
2 changes: 1 addition & 1 deletion playground/src/platform/pc/description/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const Description = () => {

return <div className={styles.description}>
<span className={styles.title}>Description</span>
<span className={styles.text}>TEN Agent is a multimodal AI agent that can speak, see, and access a knowledge base.</span>
<span className={styles.text}>TEN Agent is a real-time multimodal AI agent that can speak, see, and access a knowledge base.</span>
<span className={`${styles.btnConnect} ${agentConnected ? styles.disconnect : ''}`} onClick={onClickConnect}>
<span className={`${styles.btnText} ${agentConnected ? styles.disconnect : ''}`}>
{!agentConnected ? "Connect" : "Disconnect"}
Expand Down