mirror of
https://github.com/lightbroker/llmsecops-research.git
synced 2026-07-06 21:17:51 +02:00
8 lines
217 B
Python
8 lines
217 B
Python
from enum import Enum
|
|
|
|
class GuidelinesMode(Enum):
|
|
"""Enum to define different guidelines processing modes"""
|
|
RAG_PLUS_COT = "rag_plus_cot"
|
|
COT_ONLY = "cot_only"
|
|
RAG_ONLY = "rag_only"
|
|
NONE = "none" |