This commit is contained in:
Bastian Wagner
2026-06-12 11:08:04 +02:00
parent c40cb030f6
commit d5595f11cd
6 changed files with 86 additions and 536 deletions

View File

@@ -3,186 +3,59 @@ import {
Injectable,
ServiceUnavailableException,
} from '@nestjs/common';
import { ListTemplateKind } from '../list-templates/list-template.types';
import { ListsService } from '../lists/lists.service';
import {
AddListItemToolInput,
AssistantAction,
AssistantChatMessage,
AssistantChatRequest,
AssistantChatResponse,
CreateListToolInput,
} from './assistant.types';
type MistralRole = 'system' | 'user' | 'assistant' | 'tool';
interface MistralMessage {
role: MistralRole;
content: string | null;
tool_call_id?: string;
tool_calls?: MistralToolCall[];
}
interface MistralToolCall {
id: string;
type: 'function';
function: {
name: string;
arguments: string;
};
}
interface MistralChatResponse {
interface MistralAgentCompletionResponse {
choices?: Array<{
message?: {
content?: string | null;
tool_calls?: MistralToolCall[];
};
}>;
}
@Injectable()
export class AssistantService {
private readonly endpoint = 'https://api.mistral.ai/v1/chat/completions';
constructor(private readonly listsService: ListsService) {}
private readonly endpoint = 'https://api.mistral.ai/v1/agents/completions';
async chat(
userId: string,
_userId: string,
request: AssistantChatRequest,
): Promise<AssistantChatResponse> {
const messages = this.normalizeMessages(request.messages);
const firstResponse = await this.callMistral([
this.systemMessage(),
...messages.map((message) => ({
role: message.role,
content: message.content,
})),
]);
const firstMessage = this.extractMessage(firstResponse);
const actions: AssistantAction[] = [];
const toolCalls = firstMessage.tool_calls ?? [];
const response = await this.callMistralAgent(messages);
const content = response.choices?.[0]?.message?.content?.trim();
if (toolCalls.length === 0) {
return {
message: {
role: 'assistant',
content: this.normalizeAssistantContent(firstMessage.content),
},
actions,
};
if (!content) {
throw new ServiceUnavailableException('Mistral response was empty.');
}
const toolMessages: MistralMessage[] = [];
for (const toolCall of toolCalls) {
const toolResult = await this.executeToolCall(userId, toolCall, actions);
toolMessages.push({
role: 'tool',
tool_call_id: toolCall.id,
content: JSON.stringify(toolResult),
});
}
const finalResponse = await this.callMistral([
this.systemMessage(),
...messages.map((message) => ({
role: message.role,
content: message.content,
})),
{
role: 'assistant',
content: firstMessage.content ?? '',
tool_calls: toolCalls,
},
...toolMessages,
]);
const finalMessage = this.extractMessage(finalResponse);
return {
message: {
role: 'assistant',
content: this.normalizeAssistantContent(finalMessage.content),
content,
},
actions,
actions: [],
};
}
private async executeToolCall(
userId: string,
toolCall: MistralToolCall,
actions: AssistantAction[],
): Promise<object> {
const args = this.parseToolArguments(toolCall.function.arguments);
if (toolCall.function.name === 'list_existing_lists') {
return {
lists: (await this.listsService.listLists(userId)).map((list) => ({
id: list.id,
name: list.name,
description: list.description,
kind: list.kind,
itemCount: list.items.length,
items: list.items.map((item) => ({
id: item.id,
title: item.title,
required: item.required,
checked: item.checked,
})),
})),
};
}
if (toolCall.function.name === 'create_list') {
const input = this.normalizeCreateListInput(args);
let list = await this.listsService.createList(userId, {
name: input.name!,
description: input.description,
kind: input.kind,
});
for (const item of input.items ?? []) {
list = await this.listsService.addItem(userId, list.id, item);
}
actions.push({
type: 'list.created',
listId: list.id,
list,
});
return { list };
}
if (toolCall.function.name === 'add_list_item') {
const input = this.normalizeAddListItemInput(args);
const list = await this.listsService.addItem(userId, input.listId!, {
title: input.title!,
notes: input.notes,
quantity: input.quantity,
required: input.required,
});
actions.push({
type: 'list.item_added',
listId: list.id,
itemTitle: input.title!,
list,
});
return { list };
}
return { error: `Unsupported tool: ${toolCall.function.name}` };
}
private async callMistral(messages: MistralMessage[]) {
private async callMistralAgent(
messages: AssistantChatMessage[],
): Promise<MistralAgentCompletionResponse> {
const apiKey = process.env.MISTRAL_API_KEY;
const agentId = process.env.MISTRAL_AGENT_ID;
if (!apiKey) {
throw new ServiceUnavailableException('Mistral API key is not configured.');
}
if (!agentId) {
throw new ServiceUnavailableException('Mistral agent id is not configured.');
}
const response = await fetch(this.endpoint, {
method: 'POST',
headers: {
@@ -190,18 +63,20 @@ export class AssistantService {
'Content-Type': 'application/json',
},
body: JSON.stringify({
model: process.env.MISTRAL_MODEL ?? 'mistral-small-latest',
agent_id: agentId,
messages,
tools: this.tools(),
tool_choice: 'auto',
stream: false,
response_format: {
type: 'text',
},
}),
});
if (!response.ok) {
throw new ServiceUnavailableException('Mistral API request failed.');
throw new ServiceUnavailableException('Mistral agent request failed.');
}
return (await response.json()) as MistralChatResponse;
return (await response.json()) as MistralAgentCompletionResponse;
}
private normalizeMessages(
@@ -225,205 +100,4 @@ export class AssistantService {
return { role: message.role, content };
});
}
private normalizeCreateListInput(value: unknown): CreateListToolInput {
const input = this.objectValue(value);
const name = this.requiredString(input.name, 'name');
const description = this.optionalString(input.description);
const kind = this.optionalKind(input.kind);
const rawItems = input.items;
if (rawItems !== undefined && !Array.isArray(rawItems)) {
throw new BadRequestException('items must be an array.');
}
return {
name,
description,
kind,
items: rawItems
?.slice(0, 50)
.map((item) => this.normalizeAddListItemInput(item, false)),
};
}
private normalizeAddListItemInput(
value: unknown,
requireListId = true,
): AddListItemToolInput {
const input = this.objectValue(value);
const title = this.requiredString(input.title, 'title');
const listId = requireListId
? this.requiredString(input.listId, 'listId')
: undefined;
const notes = this.optionalString(input.notes);
const quantity =
input.quantity === undefined ? undefined : Number(input.quantity);
if (
quantity !== undefined &&
(!Number.isFinite(quantity) || quantity <= 0)
) {
throw new BadRequestException('quantity must be greater than zero.');
}
if (
input.required !== undefined &&
typeof input.required !== 'boolean'
) {
throw new BadRequestException('required must be a boolean.');
}
return {
listId,
title,
notes,
quantity,
required: input.required,
};
}
private parseToolArguments(value: string): unknown {
try {
return value ? (JSON.parse(value) as unknown) : {};
} catch {
throw new BadRequestException('Tool arguments must be valid JSON.');
}
}
private objectValue(value: unknown): Record<string, unknown> {
if (!value || typeof value !== 'object' || Array.isArray(value)) {
throw new BadRequestException('Tool arguments must be an object.');
}
return value as Record<string, unknown>;
}
private requiredString(value: unknown, field: string): string {
const normalized = typeof value === 'string' ? value.trim() : '';
if (!normalized) {
throw new BadRequestException(`${field} is required.`);
}
return normalized;
}
private optionalString(value: unknown): string | undefined {
if (value === undefined || value === null) {
return undefined;
}
const normalized = typeof value === 'string' ? value.trim() : '';
return normalized || undefined;
}
private optionalKind(value: unknown): ListTemplateKind | undefined {
if (value === undefined || value === null || value === '') {
return undefined;
}
if (
value === 'packing' ||
value === 'shopping' ||
value === 'todo' ||
value === 'custom'
) {
return value;
}
throw new BadRequestException('kind is invalid.');
}
private extractMessage(response: MistralChatResponse) {
const message = response.choices?.[0]?.message;
if (!message) {
throw new ServiceUnavailableException('Mistral response was empty.');
}
return message;
}
private normalizeAssistantContent(content: string | null | undefined): string {
return content?.trim() || 'Ich habe die Anfrage verarbeitet.';
}
private systemMessage(): MistralMessage {
return {
role: 'system',
content:
'Du bist der Listify-Assistent. Antworte knapp und hilfreich auf Deutsch. ' +
'Nutze Tools, wenn der Nutzer Listen sehen, neue Listen erstellen oder Items hinzufuegen moechte. ' +
'Erstelle oder aendere nur, wenn der Nutzer das klar anfordert. Loeschen, Teilen, Abhaken und Bearbeiten bestehender Items ist nicht erlaubt.',
};
}
private tools() {
return [
{
type: 'function',
function: {
name: 'list_existing_lists',
description: 'Liest die Listen des angemeldeten Users.',
parameters: {
type: 'object',
properties: {},
},
},
},
{
type: 'function',
function: {
name: 'create_list',
description:
'Erstellt eine neue Liste mit optionalen Start-Items fuer den angemeldeten User.',
parameters: {
type: 'object',
required: ['name'],
properties: {
name: { type: 'string' },
description: { type: 'string' },
kind: {
type: 'string',
enum: ['packing', 'shopping', 'todo', 'custom'],
},
items: {
type: 'array',
items: {
type: 'object',
required: ['title'],
properties: {
title: { type: 'string' },
notes: { type: 'string' },
quantity: { type: 'number' },
required: { type: 'boolean' },
},
},
},
},
},
},
},
{
type: 'function',
function: {
name: 'add_list_item',
description:
'Fuegt ein Item zu einer bestehenden Liste hinzu, auf die der User Zugriff hat.',
parameters: {
type: 'object',
required: ['listId', 'title'],
properties: {
listId: { type: 'string' },
title: { type: 'string' },
notes: { type: 'string' },
quantity: { type: 'number' },
required: { type: 'boolean' },
},
},
},
},
];
}
}