IssueTriage can now interact with task in YouTrack and it is idempotent
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
from abc import abstractmethod, ABC
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
'''
|
||||
A contract between agents
|
||||
'''
|
||||
class BaseContract(BaseModel):
|
||||
def to_prompt_text(self) -> str:
|
||||
pass
|
||||
|
||||
def render_dbg(self) -> str:
|
||||
pass
|
||||
|
||||
def is_filled(self) -> bool:
|
||||
pass
|
||||
Reference in New Issue
Block a user