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!
@HenleyLive2 жыл бұрын
We are :)
@justbrady515 Жыл бұрын
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!
@danielduggin28982 жыл бұрын
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?
@Zukunftswelt5 ай бұрын
How to import a faq.json or a database.json?
@abylayaiyp93312 ай бұрын
I love man, your crazy 180 degree solution is genius, I've struggling with this problem for 3 months
@joeydekok53772 жыл бұрын
it works great, but how do i get my keyboard down again? Is there a special code for that?
@Indently2 жыл бұрын
There is some code for that. Type in on Google: How to dismiss keyboard in SwiftUI programatically
@joeydekok53772 жыл бұрын
Thx, it works🥳
@essensian10 ай бұрын
Thank you. That was really helpful.
@Indently10 ай бұрын
Glad it was helpful!
@absolute_tk Жыл бұрын
Best Tutorial!!!
@SoothingAuraTracks Жыл бұрын
can you this in visual studio
@charon_vii Жыл бұрын
Which Speech to Text API are you using to generate the audio for this video?
@Indently Жыл бұрын
GPT-6
@charon_vii Жыл бұрын
GCP, AWS, Whisper? I don't feel like listening to every option until I figure it out. It's a solid video.
@Indently Жыл бұрын
I still don't know if I should take my voice sounding like a text-to-speech voice as a compliment or an insult.
@corporatepayaso2 жыл бұрын
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?
@Indently2 жыл бұрын
I recommend looking into basic chat bot recognition code snippets. How the bot responds is up to you.
@Solomonsolo72 жыл бұрын
@@Indently hi - can this be done on tensorflow also..? :)
@Indently2 жыл бұрын
@@Solomonsolo7 This is just UI, you can add any kind of response system to it
@subhanquliyev56442 жыл бұрын
What a program language you use to do this? And which emulator is this?
@Indently2 жыл бұрын
Swift + Xcode
@cytolytic2 жыл бұрын
can you do a tutorial like this for jetpack compose?
@Indently2 жыл бұрын
I recommend checking out Philipp Lackner if you want to learn about Jetpack Compose.
@cytolytic2 жыл бұрын
@@Indently thanks! I'll check him out
@PhilippLackner2 жыл бұрын
@@Indently Bro
@Indently2 жыл бұрын
@@PhilippLackner Bro
@快樂人-c8q Жыл бұрын
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" } }
@rovsen19932 жыл бұрын
Thanks man). I looking for .rotationEffect(.degrees(180))