OS: Linux 4.9.184-linuxkit
Python: 3.6.7
I tried to run the example of agent in Rasa Docs. https://rasa.com/docs/rasa/api/agent/#rasa.core.agent.Agent.handle_text
from rasa.core.agent import Agent
from rasa.core.interpreter import RasaNLUInterpreter
agent = Agent.load(“examples/restaurantbot/models/current”)
await agent.handle_text(“hello”)
[u’how can I help you?']
But it came to an SyntaxError: invalid syntax.
Is anyone can help me?