1

Can we store concept value or action name values in session or is there any temporary storage?

I only found $vivContext which is available all across the session but we cant store the values there also.

3 Answers3

1

Bixby doesn't support anything like this.

If you wish to store things across sessions, it's highly recommended that you use you own third-party storage solution.

dogethis
  • 519
  • 6
  • 15
0

By default concepts are stored across a session/conversation (mark them as transient if you do not want this behavior e.g. make them request based). However to store across sessions, you need to use an API call.

rogerkibbe
  • 358
  • 2
  • 10
0

I wrote a tutorial capsule that uses an AWS dynamoDB for remote storage. It includes step-by-step instructions for how to use AWS for storing things between sessions. Please feel free to clone or fork it, and customize it for your needs.

Van Boughner
  • 324
  • 2
  • 8