mirror of
https://github.com/enricoros/big-AGI.git
synced 2026-05-10 21:50:14 -07:00
Cleanups: remove magic emojis
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# BIG-AGI 🧠✨
|
||||
# BIG-AGI 🧠
|
||||
|
||||
Welcome to big-AGI, the AI suite for professionals that need function, form,
|
||||
simplicity, and speed. Powered by the latest models from 15 vendors and
|
||||
@@ -164,7 +164,7 @@ https://github.com/enricoros/big-AGI/assets/1590910/a6b8e172-0726-4b03-a5e5-10cf
|
||||
|
||||
For full details and former releases, check out the [changelog](docs/changelog.md).
|
||||
|
||||
## 👉 Key Features ✨
|
||||
## 👉 Key Features
|
||||
|
||||
|  |  |  |  |  |
|
||||
|---------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
|
||||
|
||||
@@ -94,7 +94,7 @@ export function AppNews() {
|
||||
<Button
|
||||
variant='solid' color='primary' size='lg'
|
||||
component={Link} href={ROUTE_INDEX} noLinkStyle
|
||||
endDecorator='✨'
|
||||
// endDecorator='✨'
|
||||
sx={{
|
||||
boxShadow: '0 8px 24px -4px rgb(var(--joy-palette-primary-mainChannel) / 20%)',
|
||||
minWidth: 180,
|
||||
|
||||
@@ -147,7 +147,7 @@ export const NewsItems: NewsItem[] = [
|
||||
{
|
||||
versionCode: '1.12',
|
||||
versionName: 'AGI Hotline',
|
||||
versionMoji: '✨🗣️',
|
||||
// versionMoji: '✨🗣️',
|
||||
versionDate: new Date('2024-01-26T12:30:00Z'),
|
||||
versionCoverImage: coverV112,
|
||||
items: [
|
||||
|
||||
@@ -29,7 +29,7 @@ export async function autoConversationTitle(conversationId: string, forceReplace
|
||||
const { setAutoTitle, setUserTitle } = useChatStore.getState();
|
||||
if (forceReplace) {
|
||||
setUserTitle(conversationId, '');
|
||||
setAutoTitle(conversationId, '✨...');
|
||||
setAutoTitle(conversationId, '✏️...');
|
||||
}
|
||||
|
||||
// first line of the last 5 messages
|
||||
|
||||
@@ -198,7 +198,8 @@ export function conversationToMarkdown(conversation: DConversation, hideSystemMe
|
||||
let text = messageFragmentsReduceText(message.fragments);
|
||||
switch (message.role) {
|
||||
case 'system':
|
||||
senderName = '✨ System message';
|
||||
// senderName = '✨ System message';
|
||||
senderName = 'System message';
|
||||
text = `*${text}*`;
|
||||
break;
|
||||
case 'assistant':
|
||||
|
||||
Reference in New Issue
Block a user