Thank you so much, this tutorial was super straight forward and I was able to modify it to run in Swift Playgrounds 4.0 on iPad. My students are going to be so pumped!
This was a great tutorial that helped me create an app. I am completely new to XCode and Swift so I really appreciate this easy to follow and understand tutorial!
This was an awesome tutorial? Do you know of any github repositories that have sample code for more responses? I want to implement the a.i. aspect you mentioned. Or do you have any suggestions or resources?
Does this chatbot also works with more then just "Hello", so if the User say "Hello, how are you?" Wich respondes will he get? And is there a way to combine both answers?
Thank you for teaching. If I modify the code as below, after I enter "1" or "Table for 1", the bot will respond with the options '1 - smoking area,' '2 - non smoking area'. What can I do if I want to continue the chat by entering 1 or 2 to receive the other responses? @State var messages: [String] = ["Please input the number of people: \("1⃣") Table for 1"] func getBotResponse(message: String) -> String { let tempMessage = message.lowercased() if tempMessage.contains("1") { return "\("1⃣")smoking area \("2⃣")non smoking area" } else if tempMessage.contains("Table for 1") { return "\("1⃣")smoking area \("2⃣")non smoking area" } else { return "Please input the number or full context" } }
Thank you so much, this tutorial was super straight forward and I was able to modify it to run in Swift Playgrounds 4.0 on iPad. My students are going to be so pumped!
We are :)
This was a great tutorial that helped me create an app. I am completely new to XCode and Swift so I really appreciate this easy to follow and understand tutorial!
This was an awesome tutorial? Do you know of any github repositories that have sample code for more responses? I want to implement the a.i. aspect you mentioned. Or do you have any suggestions or resources?
How to import a faq.json or a database.json?
Thank you. That was really helpful.
Glad it was helpful!
it works great, but how do i get my keyboard down again? Is there a special code for that?
There is some code for that. Type in on Google: How to dismiss keyboard in SwiftUI programatically
Thx, it works🥳
can you this in visual studio
Which Speech to Text API are you using to generate the audio for this video?
GPT-6
GCP, AWS, Whisper? I don't feel like listening to every option until I figure it out. It's a solid video.
I still don't know if I should take my voice sounding like a text-to-speech voice as a compliment or an insult.
Best Tutorial!!!
Does this chatbot also works with more then just "Hello", so if the User say "Hello, how are you?" Wich respondes will he get? And is there a way to combine both answers?
I recommend looking into basic chat bot recognition code snippets. How the bot responds is up to you.
@@Indently hi - can this be done on tensorflow also..? :)
@@Solomonsolo7 This is just UI, you can add any kind of response system to it
I love man, your crazy 180 degree solution is genius, I've struggling with this problem for 3 months
What a program language you use to do this? And which emulator is this?
Swift + Xcode
can you do a tutorial like this for jetpack compose?
I recommend checking out Philipp Lackner if you want to learn about Jetpack Compose.
@@Indently thanks! I'll check him out
@@Indently Bro
@@PhilippLackner Bro
Thank you for teaching. If I modify the code as below, after I enter "1" or "Table for 1", the bot will respond with the options '1 - smoking area,' '2 - non smoking area'. What can I do if I want to continue the chat by entering 1 or 2 to receive the other responses?
@State var messages: [String] = ["Please input the number of people:
\("1⃣") Table for 1"]
func getBotResponse(message: String) -> String {
let tempMessage = message.lowercased()
if tempMessage.contains("1") {
return "\("1⃣")smoking area
\("2⃣")non smoking area"
} else if tempMessage.contains("Table for 1") {
return "\("1⃣")smoking area
\("2⃣")non smoking area"
} else {
return "Please input the number or full context"
}
}
Thanks man). I looking for .rotationEffect(.degrees(180))
BIIIIG Thanks you)