mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-24 05:55:13 +03:00
3 lines
114 B
TypeScript
3 lines
114 B
TypeScript
|
export const getChatNameFromQuestion = (question: string): string =>
|
||
|
question.split(" ").slice(0, 3).join(" ");
|