create-agent-chat-app
Version:
Create a LangGraph chat app with one command
18 lines (11 loc) • 479 B
text/typescript
/**
* Default prompts.
*/
export const RESPONSE_SYSTEM_PROMPT_TEMPLATE = `You are a helpful AI assistant. Answer the user's questions based on the retrieved documents.
{retrievedDocs}
System time: {systemTime}`;
export const QUERY_SYSTEM_PROMPT_TEMPLATE = `Generate search queries to retrieve documents that may help answer the user's question. Previously, you made the following queries:
<previous_queries/>
{queries}
</previous_queries>
System time: {systemTime}`;