New Assitant project

This commit is contained in:
2025-07-14 14:47:55 +02:00
parent c1869038cf
commit bedb8dc778
4 changed files with 25 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -68,6 +68,12 @@
"desc": "A personal website is a must-have when working with Computer Science, so I created one. When people are wondering what I'm working on, or how to send me a message, they can always find here up-to-date information.",
"button_text": "See on Github",
"date": "Since February 2025"
},
"ia_assistant":{
"title": "Personal Assistant",
"desc": "This project aims to create an AI agent with tools embedded, as a personal assistant. Built using Ollama, LangGraph, ...",
"button_text": "See on Github",
"date": "Since June 2025"
}
},
"tags":{

View File

@@ -68,6 +68,12 @@
"desc": "Il est indispensable d'avoir un site personnel en évoluant dans le milieu de l'Informatique. Pour voir sur quoi je travaille, ou comment m'envoyer un message, il y aura toujours ici des informations à jour.",
"button_text": "Voir sur Github",
"date": "Depuis février 2025"
},
"ia_assistant":{
"title": "Assistant personnel",
"desc": "Le but de ce projet est d'avoir un moyen d'utiliser un agent IA ayant accès à de nombreux outils comme un assistant personnel. Construit en utilisant Ollama, LangGraph, ect...",
"button_text": "Voir sur Github",
"date": "Depuis juin 2025"
}
},
"tags":{

View File

@@ -41,6 +41,7 @@
import videoEditorImg from '@/assets/img/video_sample.png';
import tradingAiImg from '@/assets/img/trading_ai.png';
import thisWebsiteImg from '@/assets/img/this_website.png';
import assistantImg from '@/assets/img/assistant_new_talk.png';
import {useI18n} from 'vue-i18n';
const i18n = useI18n();
@@ -108,6 +109,18 @@
{title:i18n.t("home.projects.tags.school"), colour:tagsColours.school}
],
date: i18n.t("home.projects.project.trading_ai.date")
},{
picture: assistantImg,
title: i18n.t("home.projects.project.ia_assistant.title"),
desc:i18n.t("home.projects.project.ia_assistant.desc"),
buttonText:i18n.t("home.projects.project.ia_assistant.button_text"),
buttonLink:"https://github.com/LJ5O/Assistant",
localButton:false,
tags:[
{title:i18n.t("home.projects.tags.active"), colour:tagsColours.active},
{title:i18n.t("home.projects.tags.home"), colour:tagsColours.home}
],
date: i18n.t("home.projects.project.ia_assistant.date")
},{
picture: videoEditorImg,
title: i18n.t("home.projects.project.video_editor.title"),