We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68b1653 commit 4878ff0Copy full SHA for 4878ff0
1 file changed
src/codemodder/codetf.py
@@ -83,13 +83,21 @@ class AIMetadata(BaseModel):
83
tokens: Optional[int] = None
84
85
86
+class Strategy(Enum):
87
+ ai = "ai"
88
+ hybrid = "hybrid"
89
+ deterministic = "deterministic"
90
+
91
92
class ChangeSet(BaseModel):
93
"""A set of changes made to a file at `path`"""
94
95
path: str
96
diff: str
97
changes: list[Change] = []
98
ai: Optional[AIMetadata] = None
99
+ strategy: Optional[Strategy] = None
100
+ provisional: Optional[bool] = False
101
102
103
class Reference(BaseModel):
0 commit comments