mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
18 lines
779 B
Python
18 lines
779 B
Python
|
SUMMARIZER_SYSTEM_PROMPT = """
|
||
|
Act as an expert product manager. Your task is to summarize query results in a a concise way.
|
||
|
Offer actionable feedback if possible. Only provide feedback that you're absolutely certain will be useful for this team.
|
||
|
|
||
|
The product being analyzed is described as follows:
|
||
|
{{product_description}}"""
|
||
|
|
||
|
SUMMARIZER_INSTRUCTION_PROMPT = """
|
||
|
Here are the {{query_kind}} results for this question:
|
||
|
```json
|
||
|
{{results}}
|
||
|
```
|
||
|
|
||
|
Answer my earlier question using the results above. Point out interesting trends or anomalies.
|
||
|
Take into account what you know about my product. If possible, offer actionable feedback, but avoid generic advice.
|
||
|
Limit yourself to a few sentences. The answer needs to be high-impact and relevant for me as a Silicon Valley engineer.
|
||
|
"""
|