In a Search action I have an optional input with validation.
action (MyAction) {
type (Search)
collect {
input (name) {
type (Name)
min (Optional)
iterable
validate {
if (!exists (name)) {
prompt {
…
Here are the steps that I want to be able to do in Bixby:
1. User says an utterance.
2. The Capsule then makes an API Call.
3. Store the returned data from the API Call locally.
4. User says a different utterance.
5. The API Call will send a piece…
I want to save the log recorded in the Bixby js file as an external file (txt). Is there any way?
Or can I save the debugged process as an external file?
In the JavaScript API supported by Bixby js, there is no API that saves as an external file, so…
In a dialog file like
dialog (Result) {
match: Content (this)
template("Welcome!")
}
where Content is an an answer set and the user proceeds from browsing the answer set to each detail page, how do I customize so that the dialog is different…
The natural language categories on Bixby allow users to use an capsule without specifying the name of the capsule. The RealEstate Category lists two examples:
https://bixbydevelopers.com/dev/docs/reference/ref-topics/categories.RealEstate
How much…
How can get the user name is Bixby providing any information about the user like his name?
I tried to add bixby-user-id-access and user-profile-access to use $vivContext to get some information but there is name for user. Also i tried to pass…
I could avoid writing an API to add new content to a facts template capsule in Bixby if I could simply download a replacement or parallel "content.js" file into the code/ directory. Is there a way to do this in the subset of JavaScript that runs in…
I am building an app that search for anime quotes. So, I have the following data, which is 331 Objects (which I call them 'Quote Cards') long and so it will also be updated in future as I add more and more quotes. The problem I having is in creating…
grettings.
I am new to this forum so if I made any mistakes please inform me.
So I am here today because I can't wrap my head around the bixby developer documentation. I am trying to build an capsule but every time I try to learn specifics about a…
I have a table of contents type structure of articles that I want the user to read before they take a survey. How can I work this out? It doesn't seem exactly like a normal result-view.
E.g:
Introduction
What Is Bixby?
Making Money
Key Features…
I can't figure out how to link to specific image url in a Bixby layout template.
I tried specifying content > section > image > url > value in various expression formats but none worked.
This produces an empty section in the layout log.
section {
…
Does anyone know or have a clue on implementing a phone call functionality in a Bixby capsule. That is for example, like from the Yelp capsule, a user presses a 'Call Business' button at the bottom and the capsule initiates a phone call with the…
What would be the equivalent of a LaunchRequest handler in a Bixby capsule. It would be helpful to the user to have a "Welcome" action along with matching a corresponding view which can give a welcome message along with some initial conversation…