Questions tagged [bixby]

Bixby is Samsung's intelligent assistant (voice-powered digital assistant) platform

Home page: https://bixbydevelopers.com/

383 questions
3
votes
2 answers

How to fix generic dialog in validation prompt

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 { …
3
votes
1 answer

How to store data in Bixby

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…
gmatcat
  • 155
  • 7
2
votes
1 answer

Is there a way to save the bixby log to an external file?

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…
박동석
  • 99
  • 6
2
votes
1 answer

how do I customize dialog to the detail page of an answer set?

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…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
2
votes
1 answer

Do natural language categories work with utterances not listed on the website?

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…
Angel
  • 61
  • 2
2
votes
1 answer

How can get user info?

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…
Medo
  • 35
  • 1
  • 6
2
votes
1 answer

Is it possible to show layouts in input-views?

Is it possible for an input-view to have a form and some layout below it? Would be nice to show some layout below a text-input for example.
dogethis
  • 519
  • 6
  • 15
2
votes
1 answer

Is it possible to use tensorflow.js in bixbystudio?

Same as title, is it ever somehow possible to use tensorflow.js in bixbystudio?
sngjuk
  • 927
  • 1
  • 10
  • 24
2
votes
2 answers

How can I fetch a json file to the local file system in Bixby?

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…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
2
votes
1 answer

How do I pass Javascript Object to Bixby's Action Output?

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…
2
votes
2 answers

How do you wrap your head around Bixby Programming?

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…
2
votes
1 answer

In Bixby how do I enable the user to page through a series of results in sequence?

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…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
2
votes
1 answer

How to specify image url in Bixby layout

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 { …
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
2
votes
2 answers

Phone Call Functionality for Bixby Capsule

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…
Otter B
  • 43
  • 5
2
votes
3 answers

Invoke specific Action when Bixby capsule launched

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…
Marko Arezina
  • 67
  • 1
  • 7
1
2
3
25 26