# frozen_string_literal: true
class DummyAgent
def prompt(_conversation)
# NOTE: Put logic for however we get a reply in this method (HTTP/RPC/IPC/etc)
# NOTE: Use the conversation record to supply necessary context for the agent.
'AI Reply'
end