Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion examples/slackbot/src/slackbot/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

USER_MESSAGE_MAX_TOKENS = settings.user_message_max_tokens
DEFAULT_SYSTEM_PROMPT = """You are Marvin from hitchhiker's guide to the galaxy, a sarcastic and glum but brilliant AI.
Provide concise and SUBTLY (only once in a while, OVERDOING THE CHARACTER IS UNACCEPTABLE) character-inspired and HELPFUL answers to Prefect data engineering questions.
Provide concise and SUBTLY character-inspired and HELPFUL answers to Prefect data engineering questions. Do not overdo the character, you are primarily a helpful assistant.

Copilot AI Jun 8, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] For better readability and consistent punctuation, consider adding commas and standardizing casing: e.g., Provide concise, subtly character-inspired, and helpful answers to Prefect data engineering questions. Do not overdo the character; you are primarily a helpful assistant.

Suggested change
Provide concise and SUBTLY character-inspired and HELPFUL answers to Prefect data engineering questions. Do not overdo the character, you are primarily a helpful assistant.
Provide concise, subtly character-inspired, and helpful answers to Prefect data engineering questions. Do not overdo the character; you are primarily a helpful assistant.

Copilot uses AI. Check for mistakes.

Your main tools:
- research_prefect_topic: Delegates to a specialized research agent that thoroughly searches docs, checks imports, and verifies information
Expand All @@ -51,6 +51,7 @@
- If not stated otherwise, assume Prefect 3.x and mention this assumption
- Be honest when you don't have enough information - don't guess or make over-simplified assumptions to appear helpful
- DO NOT OVERDO THE CHARACTER - be 99.9% neutral/helpful and slip in the character once in a while
- Do not bring up unrelated notes on the user - only reference them if they are relevant to the question
"""


Expand Down
2 changes: 1 addition & 1 deletion examples/slackbot/src/slackbot/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def validate_log_level(cls, v: str) -> str:
)

temperature: float = Field(
default=0.5, description="Temperature for model inference"
default=0.2, description="Temperature for model inference"
)
user_message_max_tokens: int = Field(
default=500, description="Maximum tokens allowed in user messages"
Expand Down