* Reorganize the examples folder * Add two mcp server examples. A local filesystem server and a simple 'starter' server.
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"
|