Usage¶
Simple Example¶
This example starts a dialogue in the terminal between a user and an agent that parrots back the user’s utterances.
Imports
from dialoguekit.platforms.terminal_platform import TerminalPlatform from sample_agents.parrot_agent import ParrotAgent
Start conversation
platform = TerminalPlatform(ParrotAgent) platform.start()