Spaces:
Running
Running
File size: 307 Bytes
6b6ca97 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import { ChatTurnMessage } from '../types';
const formatChatHistoryAsString = (history: ChatTurnMessage[]) => {
return history
.map(
(message) =>
`${message.role === 'assistant' ? 'AI' : 'User'}: ${message.content}`,
)
.join('\n');
};
export default formatChatHistoryAsString;
|