mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 10:55:17 +00:00
Define ReasoningEffort enum
This commit is contained in:
parent
e6b6e28d6b
commit
d37732c25d
1 changed files with 5 additions and 0 deletions
|
|
@ -50,6 +50,11 @@ class PRReviewHeader(str, Enum):
|
|||
REGULAR = "## PR Reviewer Guide"
|
||||
INCREMENTAL = "## Incremental PR Reviewer Guide"
|
||||
|
||||
class ReasoningEffort(str, Enum):
|
||||
HIGH = "high"
|
||||
MEDIUM = "medium"
|
||||
LOW = "low"
|
||||
|
||||
|
||||
class PRDescriptionHeader(str, Enum):
|
||||
CHANGES_WALKTHROUGH = "### **Changes walkthrough** 📝"
|
||||
|
|
|
|||
Loading…
Reference in a new issue