Refactor and implement queueing messages

This commit is contained in:
2025-02-12 18:45:21 +00:00
parent 213df9176e
commit 018d2f87c7
23 changed files with 804 additions and 338 deletions

View File

@@ -131,7 +131,7 @@ class PersonaForm(RestrictedFormMixin, forms.ModelForm):
class ManipulationForm(RestrictedFormMixin, forms.ModelForm):
class Meta:
model = Manipulation
fields = ("name", "group", "ai", "persona", "enabled", "send_enabled")
fields = ("name", "group", "ai", "persona", "enabled", "mode")
help_texts = {
"name": "The name of this manipulation strategy.",
"group": "The group involved in this manipulation strategy.",
@@ -139,7 +139,7 @@ class ManipulationForm(RestrictedFormMixin, forms.ModelForm):
"ai": "The AI associated with this manipulation.",
"persona": "The persona used for this manipulation.",
"enabled": "Whether this manipulation is enabled.",
"send_enabled": "Whether this manipulation sends replies.",
"mode": "Mode of operation.",
}