01. Spring AI : Build generative AI applications using SpringBoot and Java

Sdílet
Vložit
  • čas přidán 22. 08. 2024

Komentáře • 20

  • @TechyTacos
    @TechyTacos  Před 2 měsíci +3

    Updates :
    ----------------------------------
    1) Spring AI repositories have been updated and all these OpenAI dependencies are available on the start.spring.io/ . It means you don't need to add the dependencies manually and it can be added directly just by clicking on the "Add Dependencies" on start.spring.io.
    2) As you would be using updated version of Spring AI. Please do autowire ChatModel or OpenAIChatModel instead of AIClient.

  • @muralikrishna-qh6vg
    @muralikrishna-qh6vg Před měsícem +2

    I saw few other videos on the same topic but this is the simplest one, thanks for the video

  • @user-sl3qd1os7r
    @user-sl3qd1os7r Před 14 dny

    Wow, thank you🎉

  • @bharatsoni9487
    @bharatsoni9487 Před 3 měsíci +1

    Nice, thanks brother

  • @wasimdorboz
    @wasimdorboz Před 6 měsíci +1

    so i can now write more cleaner code thanks bro

  • @syedrizwan2203
    @syedrizwan2203 Před 6 měsíci +1

    Nice content brother but will it be actually usfull in ai industry? because they are mostly using python as it is widly usefull for ai and machine learning

    • @TechyTacos
      @TechyTacos  Před 6 měsíci +3

      Yes. you are right ! There is no comparison of Python and Java in traditional Machine Learning and AI space. But, for Gen AI, I feel there is a scope as SpringBoot is already a well known and established framework to build industry ready applications. So, if the platform itself gets matured enough (that's why they have introduced Spring AI) to handle Gen AI ecosystem as well then it would be easier to grasp for Java developers rather than learning new language and framework altogether.

    • @sundarsravanivlogs9619
      @sundarsravanivlogs9619 Před 4 měsíci

      Iam also worrying that java developers really required to switch the career to python with AI and machine learning..or shall we continue as java developer with AI?

  • @abhinjr4918
    @abhinjr4918 Před 5 měsíci

    I have placement in next year..
    And i am thinking of integration of AI my portfolio like ai assistance that summarizes my projects to interviewer..
    So my tech stack is springboot + react etc etc....
    What should i choose python or speing AI I need only one feature now i have to learn python for that... Please help

    • @TechyTacos
      @TechyTacos  Před 5 měsíci

      I would suggest to go with Python as the ecosystem is more matured there. Spring AI will be there but it may take a while.

    • @abhinjr4918
      @abhinjr4918 Před 5 měsíci

      Ok❤

  • @jyothis4017
    @jyothis4017 Před 5 měsíci

    Which AI model is being used here, as we are not specifying the model being used like gpt-3.5-turbo,etc?

    • @TechyTacos
      @TechyTacos  Před 5 měsíci

      Yes. By default, they are using gpt-3.5-turbo.
      You can change the model by updating this parameter in the resource/application.properties file.
      spring.ai.openai.chat.options.model = gpt-4o
      You can refer my latest videos in the Spring AI series for the same.

    • @jyothis4017
      @jyothis4017 Před 5 měsíci

      @@TechyTacos I want to look more into the class, but fail to identify any good documentations, can you help out?

    • @jyothis4017
      @jyothis4017 Před 5 měsíci

      @@TechyTacos Another question is that how many tokens are allowed for an answer, I am trying to generate an itinerary hence would require atleast 300 tokens.

    • @TechyTacos
      @TechyTacos  Před 5 měsíci

      This totally depends on the model which you are leveraging in your application. All models would support the required tokens what you are looking for.
      Please refer this for the models and its corresponding token details : platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4

    • @dProfessor_
      @dProfessor_ Před 6 dny

      Gpt-4o-mini is more economical and useful...
      ​@@TechyTacos

  • @karthikeyans2800
    @karthikeyans2800 Před 3 měsíci

    How to connect this with frontend html

    • @TechyTacos
      @TechyTacos  Před 3 měsíci

      You can expose just as an traditional API and consume it at Frontend. This integration is not different than our what we have been already developing.