mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-04-30 23:00:30 +00:00
e9e8c8d218
Build and push containers / metadata (push) Has been cancelled
Build and push containers / build-push-containers (push) Has been cancelled
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Build distribution 📦 (push) Has been cancelled
ChangeDetection.io Container Build Test / Build linux/amd64 (alpine) (push) Has been cancelled
ChangeDetection.io Container Build Test / Build linux/arm64 (alpine) (push) Has been cancelled
ChangeDetection.io Container Build Test / Build linux/amd64 (main) (push) Has been cancelled
ChangeDetection.io Container Build Test / Build linux/arm/v7 (main) (push) Has been cancelled
ChangeDetection.io Container Build Test / Build linux/arm/v8 (main) (push) Has been cancelled
ChangeDetection.io Container Build Test / Build linux/arm64 (main) (push) Has been cancelled
ChangeDetection.io App Test / lint-code (push) Has been cancelled
ChangeDetection.io App Test / lint-translations (push) Has been cancelled
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Test the built package works basically. (push) Has been cancelled
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Publish Python 🐍 distribution 📦 to PyPI (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-10 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-11 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-12 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-13 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-14 (push) Has been cancelled
19 lines
623 B
Python
19 lines
623 B
Python
"""
|
|
Shared UI placeholder strings for LLM fields.
|
|
|
|
Used by WTForms field definitions in forms.py and blueprint/tags/form.py.
|
|
Templates use their own _()-translated variants but should stay in sync with these.
|
|
"""
|
|
|
|
# llm_intent field — placeholder text for per-watch context
|
|
LLM_INTENT_WATCH_PLACEHOLDER = (
|
|
"e.g. Alert me when the price drops below $300, or a new product is launched. "
|
|
"Ignore footer and navigation changes."
|
|
)
|
|
|
|
# llm_intent field — placeholder text for tag/group context
|
|
LLM_INTENT_TAG_PLACEHOLDER = (
|
|
"e.g. Flag price changes or new product launches across all watches in this group"
|
|
)
|
|
|