Cleanups: remove magic emojis

This commit is contained in:
Enrico Ros
2025-03-07 15:32:22 -08:00
parent 7915aed388
commit 17549bfe29
5 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -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
| ![Advanced AI](https://img.shields.io/badge/Advanced%20AI-32383e?style=for-the-badge&logo=ai&logoColor=white) | ![100+ AI Models](https://img.shields.io/badge/100%2B%20AI%20Models-32383e?style=for-the-badge&logo=ai&logoColor=white) | ![Flow-state UX](https://img.shields.io/badge/Flow--state%20UX-32383e?style=for-the-badge&logo=flow&logoColor=white) | ![Privacy First](https://img.shields.io/badge/Privacy%20First-32383e?style=for-the-badge&logo=privacy&logoColor=white) | ![Advanced Tools](https://img.shields.io/badge/Fun%20To%20Use-f22a85?style=for-the-badge&logo=tools&logoColor=white) |
|---------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
+1 -1
View File
@@ -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,
+1 -1
View File
@@ -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: [
+1 -1
View File
@@ -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
+2 -1
View File
@@ -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':