File size: 238 Bytes
884908f
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { getSettings } from "./pubSub";

export function getSystemPrompt(searchResults: string) {
  return getSettings()
    .systemPrompt.replace("{{searchResults}}", searchResults)
    .replace("{{dateTime}}", new Date().toString());
}