0
User says: What's the temperature in SF?
bot executes: get_forecast
updates context with: forecast
bot send: {forecast}
的情景是否有使用{}預測和提取實體從它的方法嗎?例如,我可以繼續上述故事 -
User say: convert that in celsius
<extract temperature from {forecast} set entities>
bot execute: convert_to_celsius
updates context with: temperature
bot sends: {temperature}
有關如何執行此操作的任何建議?
溫度應在下一個請求的上下文中可用,對不對?可以,您只需在轉換操作中解析字符串,然後再次將其作爲預測發送回去? – Dustin