Co-authored-by: Eric Gustin <eric@arcade-ai.com> Co-authored-by: Nate Barbettini <nathanaelb@gmail.com> Co-authored-by: Nate Barbettini <nate@arcade-ai.com>
8 lines
172 B
Python
8 lines
172 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(kw_only=True)
|
|
class AgentConfigurable:
|
|
"""The configurable fields for the chatbot."""
|
|
|
|
user_id: str = "default-user"
|