Spring Tips: Spring AI

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ก.พ. 2025

ความคิดเห็น • 87

  • @petervangeenhoven6991
    @petervangeenhoven6991 ปีที่แล้ว +17

    If all TH-cam content was as informative and to the point as this... Job well done, and much appreciated!

  • @samiulalomsium-t7i
    @samiulalomsium-t7i ปีที่แล้ว +73

    Spring is becoming the most advanced backend framework of all kinds of backend frameworks of all languages.

    • @Lykkos-321
      @Lykkos-321 ปีที่แล้ว +9

      absolutely!!! it's getting better and joyful to work with

    • @ihandle24
      @ihandle24 ปีที่แล้ว

      java is shit. fucking old, slow, high resource consuming, heavy.

    • @ihandle24
      @ihandle24 ปีที่แล้ว

      @@Lykkos-321 you prolly havent seen other framework.

    • @Lykkos-321
      @Lykkos-321 ปีที่แล้ว +1

      @@ihandle24 axum from rust, not even close to surpass spring 😎

    • @hobaca1465
      @hobaca1465 ปีที่แล้ว +2

      Nope. Quite the opposite. In my env, a large financial org, people are combining multiple Spring projects to form a complex monolithic stack, difficult to debug. Pile on Spring Integration AWS on top of Spring Cloud AWS on top of Spring Session JDBC on top of Spring Security.

  • @pedrolopes7813
    @pedrolopes7813 9 หลายเดือนก่อน +1

    Very fun and informative demo Josh! Thanks. I'll definitely use this soon on few personal projects

  • @luiscarbonel1991
    @luiscarbonel1991 11 หลายเดือนก่อน +3

    I was testing the integration with Pinecone vector database and is amazing. I built the frontend with nextjs and backend with spring boot. Thanks ✌️

  • @coldstone87
    @coldstone87 ปีที่แล้ว +5

    Awesome. Indeed a great time to be a java developer

  • @tuliomop
    @tuliomop 11 หลายเดือนก่อน +1

    Thank you for all your professional job

  • @DorBenDov
    @DorBenDov 8 หลายเดือนก่อน

    Very good and simple explanations. i tried and it works great, changed to my samples, also worked very good and very fast.

  • @dibangshuwaddar1009
    @dibangshuwaddar1009 9 หลายเดือนก่อน

    It was an awesome and very impressive demo of the new feature.

  • @compiled9787
    @compiled9787 ปีที่แล้ว +7

    This will be revolutionary!

  • @danielsundersingh1
    @danielsundersingh1 11 หลายเดือนก่อน +2

    Where is the Open AI API configuration done?

  • @lowabstractionlevel3910
    @lowabstractionlevel3910 ปีที่แล้ว +18

    Josh Long thinks and types code so fast that his videos are the only ones I need to slow down on youtube instead of speed up

    • @petervangeenhoven6991
      @petervangeenhoven6991 ปีที่แล้ว +3

      Was thinking the same thing: finally a video you do not have to speed up!

  • @CodeJava
    @CodeJava 23 วันที่ผ่านมา

    What powers Spring AI? ChatGPT? By the way, I see the Spring initializr is getting better and better.

  • @DinMamma002
    @DinMamma002 11 หลายเดือนก่อน

    Thanks Josh! You should be a speaker at JFocus in Stockholm next year.

  • @ashishkarn9283
    @ashishkarn9283 ปีที่แล้ว +2

    the ocean of knowledge.

  • @ansismaleckis1296
    @ansismaleckis1296 ปีที่แล้ว

    Thanks for the tutorial!
    I managed to run this "on my machine". What I discovered is that the pdf document is just split into pages and fed into pgVector. Similarity search then returns top4 results (the 4 best pages) by default which are then sent to chatGpt. It is possible to configure similarity search to return more/less results (pages). Similarity search is quite slow on my computer, it takes a couple of seconds (I have a "normal" consumer laptop with i5). I suppose if there were 100 or 1000 pages not 10 then the similarity search would really get slow.
    Too bad the call to openAi was performed with blocking .call()🤭 Spring AI and openAI support reactive calls (returning streams/Flux) so why not use them?

    • @lbognini
      @lbognini 10 หลายเดือนก่อน

      Listen carefully at 18:44 and 21:50

  • @Girichippada
    @Girichippada 9 หลายเดือนก่อน

    Hello Josh,
    Great job in explaining in detail. This really helps and gives a glimpse of Spring in the AI world. The world really needs Spring AI.
    Btw, could you please share the pdf file you have used in this demo or uploading to GitHub would be really helpful to try the same on our own?
    Thanks a bunk in advance

  • @davidgg8462
    @davidgg8462 ปีที่แล้ว +2

    Always great man !

  •  ปีที่แล้ว +2

    Great Job

  • @mohammedsardar3779
    @mohammedsardar3779 10 หลายเดือนก่อน

    Any idea why I'm getting this err even before developing the application discussed here. I did not make atleast 10 requests to open ai, but openai says my quota over? Should I upgrade for learning phase too?
    Err Received: 429 - ResponseError[error=Error[message=You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs:

    • @marcoantoniobarrosohormiga7665
      @marcoantoniobarrosohormiga7665 9 หลายเดือนก่อน

      Hi, that happened to me too. If it's not a new account, you don't have 5$ free trial, so you have to buy tokens.

  • @kamakshaiahmukku5708
    @kamakshaiahmukku5708 10 หลายเดือนก่อน

    where can i find the git hub project for this example

  • @mohammedsardar3779
    @mohammedsardar3779 10 หลายเดือนก่อน

    Why we need to make OpenAI request for every time for any questions that we ask in the pdf? Would be great if that's explained or the right resources attached. We read the PDF and store in the vector and ask question from the vector_store. What is the role openAI rest call plays here? Why we need subscription? Any response must help.

    • @lbognini
      @lbognini 10 หลายเดือนก่อน +1

      The LMM behind the OpenAI API is the one that actually answers the question. The Vector Store just converts the corpus of all documents (pages of documents in this case) into 1536-dimension vectors of numbers and stores them in the database, along with the textual page content.
      When a question (user message) comes in, the similaritySearch method will convert it into a vector of same size and use some similarity function (like dot product) to compare it to the vectors in the database. The text content corresponding to the most similar vectors is then retrieved and injected in the template of the prompt. The result (system message) along with the question (user message) are used to call the OpenAPI model to get the response to the question.
      So Vector Store is just used here to find out the relevent contextual text to add to the question in order to give the model additionnal information it must take into account when generating its response.
      Vector Store by itself can not answer the question.
      The API calls require a subscription with OpenAI. It's not free.

    • @mohammedsardar3779
      @mohammedsardar3779 10 หลายเดือนก่อน

      Thanks a lot for your time. Do you say the user message get converted to a dimension number to the question in the pdf already and then the numbers are compared to get the answer? Dimension means here the dimension of pages in the pdf? And those dimensions are stored and compared by AI to respond to the user? Is my understanding right?

  • @el8338
    @el8338 ปีที่แล้ว

    Hi! Could you kindly provide a link to github project or something? Thanks!

  • @hdsystem
    @hdsystem 5 หลายเดือนก่อน

    Dude, where can I get that Spring t-shirt?

  • @davidhsv2
    @davidhsv2 ปีที่แล้ว

    Are you going to support the openai assistant API?

  • @channyeintun6411
    @channyeintun6411 ปีที่แล้ว +2

    It's awesome!

  • @jesusemersonpachecoalanya5680
    @jesusemersonpachecoalanya5680 9 หลายเดือนก่อน

    has anyone tried spring AI coin springboot 3.0.0? i have tried and the application won't launch.

  • @novinjaiswal
    @novinjaiswal 11 หลายเดือนก่อน

    How can I use where i have 10K transactions I want to build AI-based recommendations by feeding these transactions so our system can give personalized recommendations how can i achieve it with spring

  • @nagkumar
    @nagkumar ปีที่แล้ว +1

    could you pl. share github url of the code used..

  • @ticler
    @ticler ปีที่แล้ว +5

    Spring OS when?

  • @dev11223311
    @dev11223311 ปีที่แล้ว

    Fantastic!

  • @pankaj3746
    @pankaj3746 11 หลายเดือนก่อน

    Why Postgres? Can we use some other DB?

    • @lbognini
      @lbognini 10 หลายเดือนก่อน

      09:05 There are many vector stores you can choose from.

  • @pranayreddy5824
    @pranayreddy5824 11 หลายเดือนก่อน

    Nice ❤

  • @besooab8810
    @besooab8810 11 หลายเดือนก่อน

    can you share the repo ?

  • @DuongTran-zh6td
    @DuongTran-zh6td ปีที่แล้ว

    world need spring AI

  • @arkosarkar343
    @arkosarkar343 11 หลายเดือนก่อน

    Which IDE is that?

  • @6060797
    @6060797 ปีที่แล้ว

    which ide used in the video?

    • @davidxcode
      @davidxcode 11 หลายเดือนก่อน

      IntelliJ Idea, I think Ultimate version.

  • @RajinderYadav
    @RajinderYadav ปีที่แล้ว

    would have been better to use it with ollama that can be run locally

    • @ansismaleckis1296
      @ansismaleckis1296 ปีที่แล้ว

      The code would not change much because the Spring AI interface is almost the same for both ollama and openai. ollama can be a bit difficult to set up (at least on windows, if you want to enable ollama to use graphics card). Whitout half-decent graphics card only with cpu ollama is quite slow. On my i5 one prompt takes 2-3 minutes to generate.

  • @hasankagalwala7110
    @hasankagalwala7110 ปีที่แล้ว +1

    I think you should probably have explained the configuration a bit more, I couldn't grasp anything in one watch.

    • @erniea5843
      @erniea5843 11 หลายเดือนก่อน +2

      Anyone get this to work? The spring documentation examples don’t work.

  • @kwarnkham3836
    @kwarnkham3836 ปีที่แล้ว +3

    There's nothing easy with spring.
    Documentations are meant for robot.
    The code is super verbose.
    Even the example in documentation isn't working.

  • @avalagum7957
    @avalagum7957 ปีที่แล้ว +1

    Your Java app is not smart enough to understand the response from AI. It just printed out that response for a human being to parse.
    How do you unit test it?
    Given: a particular pdf file
    When: I feed that file to AI and ask AI this question "blah blah blah"
    Then: AI will response this "another blah blah"
    Are you sure that AI will response with that "another blah blah" every time you ask it "blah blah blah"?

    • @lbognini
      @lbognini 10 หลายเดือนก่อน +2

      What you want to do is integration test. Not unit test.
      You are trying to test OpenAI, not your App.

    • @avalagum7957
      @avalagum7957 10 หลายเดือนก่อน

      @@lbognini Yes, integration test is a more correct word. How to write that kind of test when we don't know what the output is for a given input?

  • @hobaca1465
    @hobaca1465 ปีที่แล้ว +4

    Maven? Why the regression... thought Spring is fully in the Gradle world.

    • @CheeseStickzZ
      @CheeseStickzZ ปีที่แล้ว +9

      Gradle sucks. Maven all the way

    • @konstantingromov6485
      @konstantingromov6485 ปีที่แล้ว +3

      Gradle is better if only you need to put some custom logic with tasks into projects. Otherwise (especially for tutorials) maven is way better and stable - once declare then it's needed only to update libs/plugins versions. And btw maven also consumes less resources.
      IMO

    • @lhxperimental
      @lhxperimental ปีที่แล้ว +2

      The things gradle allows you to do, you should probably not be doing them.Stopped using gradle 5 years ago.

    • @hobaca1465
      @hobaca1465 ปีที่แล้ว

      @@CheeseStickzZ reason for stating such a strong opinion?

    • @hobaca1465
      @hobaca1465 ปีที่แล้ว

      @@lhxperimental could you share some of those things?

  • @petmik5022
    @petmik5022 ปีที่แล้ว +1

    dude make something with your audio in all videos you sound like echo, not pleasure to ears listen, its pity

  • @lhxperimental
    @lhxperimental ปีที่แล้ว +1

    This is cool. However I still have mixed feelings about using a strongly typed language for AI. AI is on the opposite end of the spectrum. All that strong typing looks pointless when your inputs and outputs are blunt strings and borderline non-deterministic. Doing AI in Java feels like going the beach in a tuxedo. That aside I do see that Java can still be useful in the sense that all the bluntness / non-determinism in your application is a function of the external AI model and rest of your application is completely robust and deterministic.

  • @mohamedalmasry7577
    @mohamedalmasry7577 11 หลายเดือนก่อน

    Marketing crab .. basic API calls to open AI nothing special about it ..

  • @shandilyacodes
    @shandilyacodes 10 หลายเดือนก่อน

    Meanwhile Dmitri after finding about Spring AI : th-cam.com/video/WuL4NKDkc8M/w-d-xo.html&ab_channel=ShandilyaCodes

  • @andrews4379
    @andrews4379 ปีที่แล้ว

    Java DEAD

    • @mqtrade5743
      @mqtrade5743 ปีที่แล้ว

      Since when

    • @andrews4379
      @andrews4379 ปีที่แล้ว

      @@mqtrade5743 since overpriced language

    • @mqtrade5743
      @mqtrade5743 ปีที่แล้ว

      @@andrews4379 overpriced language? How can language be overpriced?

    • @MissBlurryFace
      @MissBlurryFace 11 หลายเดือนก่อน

      When did this happen?😂

  • @juanbp97
    @juanbp97 9 หลายเดือนก่อน

    Spring sucks...

  • @huseyinaydin99
    @huseyinaydin99 ปีที่แล้ว +1

    Hello, please reply to my message. How can I access the samples made on this channel? I need the examples made in this channel. Is there a GitHub link? Please.

    • @hamiltonmbrito
      @hamiltonmbrito ปีที่แล้ว +1

      this information is showed at 07:15

    • @huseyinaydin99
      @huseyinaydin99 ปีที่แล้ว +1

      Thank you brother. ❤ 😂​@@hamiltonmbrito

  • @DuongTran-zh6td
    @DuongTran-zh6td ปีที่แล้ว +2

    world need spring AI

  • @DuongTran-zh6td
    @DuongTran-zh6td ปีที่แล้ว +1

    world need spring AI