Hello Povilas, Is there a specific reason why you chose to implement the OpenAI integration manually, rather than using a composer package like openai-php/laravel? On the other hand, for OAuth, you decided to go with the Socialite package instead of implementing it manually. Could you share your reasoning behind these choices? Thank you
Good question. In one case, I wanted to showcase the API specifically, as close as possible to the source for OpenAI, and for Socialite I chose it as a first party package. But I guess other choices are possible, too!
The weakness of these automated tests is that they don't qualify as true integration tests, as they don't communicate with the actual external service. Instead, they relies on mocks which does not fully capture real-world scenarios or potential issues in the interaction with the real service
was really waiting for this one thanks povilas
can you prepare video on LDAP? auth system for laravel
Unfortunately I don't have enough experience with LDAP to be qualified to shoot a video about it
Maybe you can try with the Keycloak federation user
there's a package to work with ldap
@@krekas I want to know how to integrate. How roles and permission can be configured
LdapRecord - package
this looks awesome, ama checking it out for sure
Hello Povilas,
Is there a specific reason why you chose to implement the OpenAI integration manually, rather than using a composer package like openai-php/laravel? On the other hand, for OAuth, you decided to go with the Socialite package instead of implementing it manually. Could you share your reasoning behind these choices?
Thank you
Good question. In one case, I wanted to showcase the API specifically, as close as possible to the source for OpenAI, and for Socialite I chose it as a first party package. But I guess other choices are possible, too!
Wonting to do this using GoDaddy as the 3rd-party service provider can I use this same setup for it?
Haven't used GoDaddy so can't comment, sorry
Also can you prepare for this with Filament. I'm a great fan of Filament
Or Some External Custom API like Login With Employee HRMS
Not sure what exactly I have to "prepare for this", can you provide more details?
@@LaravelDaily Login with HRMS (Separate Application Database) instead of Login with Google or Github
I haven't done it myself, don't know the answer, sorry.
Hi great content can you add course base subscription on Laravel daily
Reason i need some of course but do not want full monthly package
Hi, for that I usually suggest to buy a monthly subscription and then cancel after that month. Sorry we're not planning to change the pricing model.
@LaravelDaily okay
The weakness of these automated tests is that they don't qualify as true integration tests, as they don't communicate with the actual external service. Instead, they relies on mocks which does not fully capture real-world scenarios or potential issues in the interaction with the real service
You can ADDITIONALLY write tests that test those services specifically, with testing API keys.