bixby

Interactive conversation implementation in Bixby

喜你入骨 提交于 2019-12-25 00:58:55
问题 I am new to Bixby, facing trouble in Interactive conversation implementation. Something like below : User: "Hi Bixby, book me a table at Flemings Steakhouse." Okay, for what day? User: "Tomorrow." Okay, for what time? User: "6:00pm." Okay, for how many people? User: "Four." Okay, booking a table for 4 people at Flemings Steakhouse tomorrow at 6:00pm. If any suggestion , please help. 回答1: This isn't too hard with Bixby. What you'll want to do is create an action that will collect all the input

Bixby - Pass user input from once action to other

浪尽此生 提交于 2019-12-24 00:21:16
问题 I am trying to implement to read user input from one action and to read in other screen, like: user: xx Bixby: who's there? user: yyy Bixby: yyy who? I am able to read user input yyy but unable to pass in different actions to display yyy who. can you please help or guide what I am doing wrong or what will be best approach to do this kind of capsules? Thanks in advance. 回答1: This is how I would model the behavior of what you are probably trying to achieve. Concepts - Joke - JokeQuestion (posed

How do I link to an external URL using a compound card chin

让人想犯罪 __ 提交于 2019-12-23 23:19:56
问题 In the documentation it says one can use a compound card chin to link/punch out to an external URL. However when I try something like this: chin { url { template ("#{value (model.webUrl)}") } } it doesn't work. How can I get a chin with a link to an external URL working? 回答1: To use a Chin punch out, you need to add the following: content A slot with a value for the URL link So the following would work: render { layout { section { content { compound-card { content { single-line { text { value

Can Bixby invoke an existing SmartThings automation?

て烟熏妆下的殇ゞ 提交于 2019-12-13 22:58:12
问题 Can't find any documentation on the Bixby verbal command to invoke an existing SmartThings automation I know how to speak a Bixby command to CREATE a SmartThings automation to run at a later time, but not to invoke one that is already created none I expect it should be able to do this. Also, is it possible for Bixby to create an automation that runs everyday, not just ONCE ...update... I found that this can be done by including the phrase "every day" in the command. e.g. :"Hi Bixby, turn off

Bixby: this weekend, next weekend is returning the same value

二次信任 提交于 2019-12-13 04:45:17
问题 Today i am testing my app and trying to modify the static message i am providing to user. So On 2019-05-07 1: When i say, next weekend, it returned start day 2019-05-10 and end day 2019-05-12 and also giving me extra information like offset: Next and namedTimeIntervalRel: Weekend. But I hit the next weekend query again so the extra information won't appear and the date was same. I need extra information so that i could message user that this result is for next weekend. 2: When i say this

How to use navigation mode logically

折月煮酒 提交于 2019-12-11 15:25:32
问题 Though, I am using navigation mode in my app but i am not getting the expected results. Have asked related questions earlier but that didn't help. I am putting my point here one more time. User will ask "Tell me the news" Expectation we will give user options like 1: sports news 2: Economy news 3: General news User will select by saying second one Or user will click on the option Will take input as Economy news and will give user few news in details Actually happening User will be given

Bixby: How do I set an initial-value to self BirthdayInfo in a date-picker within a input-view?

本小妞迷上赌 提交于 2019-12-11 06:06:59
问题 What additional steps do I need to take set the date-picker's initial-value to the user's birthday using the viv.self library? Is this the best place to handle this? Currently I am setting the default to 30 Years Prior. render { date-picker { // Default Date -30 Years (viv.self Birthday Option) initial-value ("subtractDuration(now().date, 'P30Y')") restrictions { // allow selection 80 Years Ago min-allowed ("subtractDuration(now().date, 'P80Y')") // to allow selection 18 Years Ago max-allowed

How to train Bixby to open Applications?

独自空忆成欢 提交于 2019-12-11 04:29:28
问题 I want Bixby to open my application installed on my Samsung device. Like when i say "open myApplicatonName" it opens the specific application. Is there any way to achieve that 回答1: Look at app-launch https://bixbydevelopers.com/dev/docs/reference/type/result-view.app-launch. This might help you with what you are trying to achieve. 来源: https://stackoverflow.com/questions/55101194/how-to-train-bixby-to-open-applications

How to control speech output on Bixby

杀马特。学长 韩版系。学妹 提交于 2019-12-04 05:03:14
问题 I'm using Bixby Developer studio and I have my UI output created and it works. How do I create or control speech output? 回答1: Bixby will automatically read the text in the UI - if that is sufficient, you are set. (Be careful here - In good VUX design, UI text and speech text are typically different. UI text is often longer, speech text often shorter and more expressive). To have speech different from the UI text, you should set the speech key of a template in a dialog. You can use all of the

How to control speech output on Bixby

≡放荡痞女 提交于 2019-12-02 08:05:48
I'm using Bixby Developer studio and I have my UI output created and it works. How do I create or control speech output? Bixby will automatically read the text in the UI - if that is sufficient, you are set. (Be careful here - In good VUX design, UI text and speech text are typically different. UI text is often longer, speech text often shorter and more expressive). To have speech different from the UI text, you should set the speech key of a template in a dialog. You can use all of the features of dialog like Bixby EL language here. Update: Bixby now supports SSML https://bixbydevelopers.com