update up
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-07-26 11:07:55 +03:30
parent c439fdd6f9
commit c96df8748f
8 changed files with 234 additions and 21 deletions
@@ -18,8 +18,20 @@ export interface AiChatCompletionResponse {
usage?: AiChatCompletionUsage;
}
export interface AiChatOfferedFood {
id: string;
title?: string;
desc?: string;
content?: string[];
price?: number;
images?: string[];
discount: number;
isSpecialOffer: boolean;
}
export interface AiChatResult {
answer: string;
foods: AiChatOfferedFood[];
consumedTokens: number;
cost: number;
promptTokens: number;