mirror of
https://github.com/ArthurDanjou/artapi.git
synced 2026-01-14 18:49:27 +01:00
feat: ajouter une description des compétences et une nouvelle invite pour récupérer les compétences d'Arthur Danjou
This commit is contained in:
@@ -37,6 +37,7 @@ export default defineContentConfig({
|
|||||||
type: 'data',
|
type: 'data',
|
||||||
source: 'skills.json',
|
source: 'skills.json',
|
||||||
schema: z.object({
|
schema: z.object({
|
||||||
|
description: z.string(),
|
||||||
body: z.array(z.object({
|
body: z.array(z.object({
|
||||||
id: z.string(),
|
id: z.string(),
|
||||||
name: z.string(),
|
name: z.string(),
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"description": "As a software engineer and mathematics student, I combine scientific rigor with technical pragmatism to design solutions tailored to the challenges of data and mathematical projects. My approach focuses on a deep understanding of needs, from data preparation to deployment, while emphasizing modeling and performance optimization.Passionate about artificial intelligence and data science, I strive to balance innovation with statistical robustness. Always eager to learn, I explore both technological advancements and entrepreneurial or financial challenges. Curious and enthusiastic, I enjoy sharing knowledge and discovering new concepts, whether in theorems or emerging technologies.",
|
||||||
"body": [
|
"body": [
|
||||||
{
|
{
|
||||||
"id": "Programming",
|
"id": "Programming",
|
||||||
|
|||||||
@@ -319,6 +319,25 @@ function createServer() {
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
server.registerPrompt(
|
||||||
|
'artmcp-skills',
|
||||||
|
{
|
||||||
|
title: 'Get Skills of Arthur Danjou',
|
||||||
|
description: 'Get a list of skills that Arthur Danjou masters'
|
||||||
|
},
|
||||||
|
async () => {
|
||||||
|
return {
|
||||||
|
messages: [{
|
||||||
|
role: 'user',
|
||||||
|
content: {
|
||||||
|
type: 'text',
|
||||||
|
text: `Provide me a list of skills that Arthur Danjou masters.`
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
return server
|
return server
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user