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
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ Lightman AI is an intelligent cybersecurity news aggregation and risk assessment
agent = "openai"
score_threshold = 8
prompt = "development"
log_level = "INFO"

[prompts]
development = "Analyze cybersecurity news for relevance to our organization."' > lightman.toml
Expand Down
2 changes: 1 addition & 1 deletion src/lightman_ai/core/sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def configure_sentry(log_level: int) -> None:
except ImportError:
if os.getenv("SENTRY_DSN"):
logger.warning(
"Could not initialize sentry, it is not installed! Add it by installing the project with `lightman-ai[sentry]`."
"Could not initialize sentry, it is not installed! Install lightman with `pip install lightman-ai[sentry]` to solve it."
)
return

Expand Down