mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-15 17:12:59 -04:00
okay maybe
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -11,7 +11,7 @@
|
|||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||||
<meta name="apple-mobile-web-app-title" content="Roomba Rover" />
|
<meta name="apple-mobile-web-app-title" content="Roomba Rover" />
|
||||||
<title>Roomba Rover</title>
|
<title>Roomba Rover</title>
|
||||||
<script type="module" crossorigin src="/assets/index-B37uweYW.js"></script>
|
<script type="module" crossorigin src="/assets/index-CkYFEA40.js"></script>
|
||||||
<link rel="stylesheet" crossorigin href="/assets/index-DSJcZoco.css">
|
<link rel="stylesheet" crossorigin href="/assets/index-DSJcZoco.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -150,28 +150,17 @@ export default function ChatMessageRow({ message }) {
|
|||||||
) : null;
|
) : null;
|
||||||
return (
|
return (
|
||||||
<div className={chatRowClass(message)}>
|
<div className={chatRowClass(message)}>
|
||||||
{!open ? (
|
<div className="flex w-full items-start gap-0.5">
|
||||||
<div className="flex w-full items-start gap-0.5">
|
<span
|
||||||
<span
|
className={`min-w-0 flex-1 break-words leading-tight whitespace-pre-wrap ${isBot ? 'text-emerald-100' : 'text-slate-100'}`}
|
||||||
className={`min-w-0 flex-1 break-words leading-tight whitespace-pre-wrap ${isBot ? 'text-emerald-100' : 'text-slate-100'}`}
|
>
|
||||||
>
|
<ChatIdentity message={message} toolsToggle={toolsToggle} />
|
||||||
<ChatIdentity message={message} toolsToggle={toolsToggle} />
|
{!open && hasText ? ` ${message.text}` : ''}
|
||||||
{hasText ? ` ${message.text}` : ''}
|
</span>
|
||||||
</span>
|
<span className="shrink-0 text-[0.65rem] text-slate-400/60">
|
||||||
<span className="shrink-0 text-[0.65rem] text-slate-400/60">
|
{formatTime(message.ts)}
|
||||||
{formatTime(message.ts)}
|
</span>
|
||||||
</span>
|
</div>
|
||||||
</div>
|
|
||||||
) : (
|
|
||||||
<div className="flex w-full items-start gap-0.5">
|
|
||||||
<span className={`min-w-0 flex-1 ${isBot ? 'text-emerald-100' : 'text-slate-100'}`}>
|
|
||||||
<ChatIdentity message={message} toolsToggle={toolsToggle} />
|
|
||||||
</span>
|
|
||||||
<span className="shrink-0 text-[0.65rem] text-slate-400/60">
|
|
||||||
{formatTime(message.ts)}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{open && toolCalls.length > 0 ? (
|
{open && toolCalls.length > 0 ? (
|
||||||
<div className="w-full rounded border border-slate-700/70 bg-slate-900/70 p-0.5 text-[0.68rem] text-slate-200">
|
<div className="w-full rounded border border-slate-700/70 bg-slate-900/70 p-0.5 text-[0.68rem] text-slate-200">
|
||||||
{toolCalls.map((entry, idx) => {
|
{toolCalls.map((entry, idx) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user