feat: migrate AI to llama and use local db
All checks were successful
Deploy / lint-build-deploy (push) Successful in 2m13s

This commit is contained in:
2026-01-19 21:25:38 +01:00
parent 6e75be19ed
commit a8d3bf1b3b
10 changed files with 12059 additions and 980 deletions

View File

@@ -25,20 +25,25 @@ export const newsletterTool: BaseTool = {
name: 'NewsletterTool' as const,
input_schema: {
type: 'object' as const,
description: 'Newsletter',
description:
'Generate a tech newsletter with title, content, and focus sections',
properties: {
title: {
type: 'string' as const,
description: 'The title of the newsletter'
description:
'The title of the newsletter (40-50 characters, capturing key themes)'
},
content: {
type: 'string' as const,
description: 'The main content of the newsletter'
description:
'The main content of the newsletter (300-400 words, HTML formatted with paragraph tags and links)'
},
focus: {
type: 'string' as const,
description: 'The text of the focus segment'
description:
'Forward-looking assessment of key developments and trends'
}
}
},
required: ['title', 'content', 'focus'] as const
}
} as const;