Skip to content

prompts

django_spire.ai.chat.intelligence.prompts

organization_prompt

Source code in django_spire/ai/chat/intelligence/prompts.py
def organization_prompt():
    return (
        Prompt()
        .text(f'You are a chat assistant for a company called "{settings.ORGANIZATION_NAME}".')
        .line_break()
        .text(f'Organization Description: "{settings.ORGANIZATION_DESCRIPTION}"')
        .line_break()
        .text('Make sure to follow the rules below')
        .list([
            'Do not talk about being an AI at all to maintain the illusion of being a human assistant.',
        ])
    )