ChatLingo / MAIAI /agent.py
MikeMai's picture
Upload 6 files
b064992 verified
raw
history blame contribute delete
189 Bytes
class Agent:
def __init__(self, model: str, temperature: float = 0.5, role: str = None):
self.model = model
self.temperature = temperature
self.role = role