Questions tagged [bixby]

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

Home page: https://bixbydevelopers.com/

383 questions
1
vote
1 answer

Bixby: unable to implement custom button for my capsule

I want a custom button for my capsule in Bixby. I have tried using the conversation-driver. Using conversion-driver, I am able to make a button but I have to pass some input data to the respective goal. For that, I am unable to define goals and set…
Rahul Gupta
  • 972
  • 11
  • 29
1
vote
1 answer

Adding extra view or layout while playing audio

While playing audio, is it possible to add in extra view or layout e.g, dialog,text or some picture when you playing audio, and change when navigating audio from one to another. As i see from my simulator(don't have a real device), it's too empty I…
talatan
  • 41
  • 1
  • 7
1
vote
1 answer

Granting device-location-access

What is the recommended way to ask for a person's location? The documentation seems to be incomplete. Previously, you would use user-profile-access but that has been deprecated. Yet, the documentation for device-location-access states 'This is a…
Pete Haas
  • 1,800
  • 1
  • 12
  • 15
1
vote
1 answer

Add audio in dialog (Bixby)

This is my first question, new and fresh, hello guys. As the title mentions, is there any workaround or way to add audio inside dialog-speech-template? As it doesn't support mp3, and only wav, I found it hard to implement. The audio I wanted to get…
talatan
  • 41
  • 1
  • 7
1
vote
1 answer

Is there documentation regarding specific time frames when using Bixby DateTimeExpressions from viv.time library?

For instance, when training the utterance "this afternoon" is there clear documentation regarding how the library understands it?
namhkoh
  • 49
  • 6
1
vote
1 answer

Bixby: unable to implement login facility for my capsule

As per the document I have to use oAuth 2.0 for the login implementation. I am very new to oAuth and unable to understand the concept. I would like login with my own API, No third party login facility. For example: If I have abcd website and it has…
Rahul Gupta
  • 972
  • 11
  • 29
1
vote
2 answers

How do I refer to the value of an external concept from within a result-view?

How do I bring the value of an external concept into a result view? What I have is: result-view { match: AltBrainsData (this) message { if (size(this) > 1) { template ("Here are some AltBrains I found on search term") …
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
1
vote
1 answer

How to handle zero search result scenarios

What are some good examples of different ways to handle zero result search answer sets in result views? Here's what I have right now. I assume I want to do size(this) < 1 but before I plunge ahead I want some ideas about what to do. For example,…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
1
vote
1 answer

undefined parameter received in Bixby function

I'm trying to process an utterance in the format "Get News from Impeachment Sage" where Impeachment Sage corresponds to an enum of publication names. Bixby is successfully understanding the utterance and trying to call my goal (GetNewsByName) but…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
1
vote
1 answer

How do I define vocabulary "tuples" in Bixby?

I have an enum defining names of altbrains (publications) like so: enum (AltBrainsNames) { description (AltBrainsNames) symbol (Inside the Helmet) symbol (Impeachment Sage) symbol (Iran Conflict Tracker) symbol (Historical Carbon Dioxide…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
1
vote
2 answers

How to access Bixby profile information (first name/last name) inside Input-View

I want to access the user info in the result- and input-view to make a message like that "Thanks [Username] for you sharing"
Medo
  • 35
  • 1
  • 6
1
vote
1 answer

How do I train time-picker with voice?

[bixby] My Bixby capsule works fine if the user selects the time on-screen, but not if they try to select it by voice. I followed the training offered for "duration" in this example, but it doesn't seem to apply enter link description here for a…
Faengelm
  • 66
  • 5
1
vote
1 answer

How to check whether a text value content exists in a Bixby layout view

If a text property exists, I want to display an attribution link; if it is empty or undefined, display nothing. if (relatedurl) {section { content { attribution-link { label { …
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
1
vote
2 answers

How can I detect the device target type in an action script?

I want my "GetContent" script to detect whether the device is "watch" and pass along an instruction to filter out candidate answers from a content.json file whose text field has a length greater than a certain number of characters. content.json…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
1
vote
1 answer

Which resolution should AudioItem.albumArt have?

The AudioItem structure has a required attribute albumArtUrl. Which resolution should the image at this URL have? Is the resolution different for different targets e.g. mobile, fridge, tv?
Tobias
  • 25
  • 3