13. OpenAI Assistant File Search & Vector Store Feature Using Python | Generative AI

Поділитися
Вставка
  • Опубліковано 1 чер 2024
  • Link To Playlist - • Learn Generative AI Us...
    Discover the latest advancements in @OpenAI assistant with our exciting new video on "New File search and vector store in #openai assistant." In this installment of our #generativeai Series, we dive deep into the cutting-edge features that are revolutionizing the way we interact with #AI-powered tools.
    OpenAI has introduced a game-changing update to their assistant, which now boasts a powerful file search functionality and an innovative vector store. These additions significantly enhance the assistant's ability to process, organize, and retrieve information, making it an even more valuable resource for users across various industries.
    Throughout this video, we will explore the intricacies of the new file search feature, demonstrating how it streamlines the process of locating specific documents and data within the assistant's vast knowledge base. We'll also shed light on the #vector store, explaining how it optimizes the storage and retrieval of information, enabling faster and more accurate results.
    Don't miss out on this opportunity to stay ahead of the curve in the world of Generative #AI. Watch our video now and unlock the full potential of OpenAI's assistant!
    #openai #generativeaitools #aiassistant #vectorStore #machinelearning #codingbootcamp #ai #artificialintelligence #machinelearningwithpython #dataretrieval #productivityhacks #efficiencyboost #vectorembeddings #vectordatabase #vectortipsandtricks #ai #aitools #aitutorial #aitutorialforbeginners #generativeai #machinelearning #machinelearningwithpython #machinelearningcommunity #naturallanguageprocessing #article #pythonprogramming #programminglife #datascience #datascientist #generativeai #generativeaitools #machinelearning #machinelearningwithpython #machinelearningcommunity #naturallanguageprocessing #artificialintelligence #pythonprogramming #codingisfun #pythonprogramming #pythontutorial #aitutorial #aitutorialforbeginners
  • Наука та технологія

КОМЕНТАРІ • 24

  • @RAKARYAUDINALDANATADIKAR-lh9yj
    @RAKARYAUDINALDANATADIKAR-lh9yj 6 днів тому +1

    Terimakasih lu keren banget bang

  • @gatorreviews7487
    @gatorreviews7487 Місяць тому +2

    Sounds great! 🙌

  • @LearnWithShajeel
    @LearnWithShajeel 26 днів тому +1

    Excellent Tutorial! Do you know how to UPDATE the file uploaded? And if it is possible then will it create new embeddings and update vector store automatically?
    I think this functionality is not supported yet!

    • @thecodecruise
      @thecodecruise  26 днів тому

      Thanks! This functionality is indeed supported in V1 and V2 as well. In V1 of assistant, you would have to upload all files again with the updated one (which was stupid but I guess it was required because it would create embeddings all over again) . You can check this out here within the update assistant documentation of openAI

    • @LearnWithShajeel
      @LearnWithShajeel 26 днів тому

      @@thecodecruise yes this functionality still does not exist.There is no endpoint related to modify file or Vector Store.

  • @lakshmanank3206
    @lakshmanank3206 Місяць тому +2

    Thanks for the useful tutorial ❤💕. Is it possible to store HTML, video and audio in vector storage? will it get the answer from this?

    • @thecodecruise
      @thecodecruise  Місяць тому

      Thanks, Trying to do better 🙂 Yes, its possible, the idea of vector embeddings is to store anything as vectors and you can derive answers from it but instead of building it from scratch I would recommend that you try Gemini 1.5 pro, I have two videos on this which summarize audio calls and extract details from the video, you can check them out below:
      1.ua-cam.com/video/qE36eBfYeR8/v-deo.htmlsi=pvPM8jZKm2kU8ixc
      2. ua-cam.com/video/qd-6kuyvc8s/v-deo.htmlsi=2ucm-fmxrLanHc8L

    • @lakshmanank3206
      @lakshmanank3206 Місяць тому +1

      @@thecodecruise sure . I'll check with the videos that you shared

    • @thecodecruise
      @thecodecruise  Місяць тому +1

      @@lakshmanank3206 Awesome! Let me know if it helps

  • @alankerrigan
    @alankerrigan 20 днів тому +1

    Is there any chance to load the file (CSV in this case) to a custom GPT, so when I share my custom GPT on the openai tools platform, I can update the CSV in the background with the latest data. Thanks

    • @thecodecruise
      @thecodecruise  20 днів тому

      You can provide a CSV to custom GPT but you can't programmatically update the CSV behind the scenes, instead, you would have to update your file an reattach to the custom GPT every time. Although OpenAI Assistants can help you achieve this

  • @LearnWithShajeel
    @LearnWithShajeel 24 дні тому +1

    Can we specify multiple tools while creating assistants? foR I want to use file_search and functions calling at the same time.

    • @thecodecruise
      @thecodecruise  24 дні тому

      Sure, I have a video on function calling which you can find here ua-cam.com/video/nKz6aTIg47s/v-deo.html, its a two part video but explains the usage of function calling step by step used for assistants.

    • @LearnWithShajeel
      @LearnWithShajeel 24 дні тому

      @@thecodecruise no but my question is that can we use both file search and function calling at the same time?

    • @thecodecruise
      @thecodecruise  24 дні тому

      @@LearnWithShajeel Yes we can, we can enable functions on assistant along with search

  • @LeeYeon-qv1tz
    @LeeYeon-qv1tz 24 дні тому +1

    Can we store csv files in vector store?

    • @thecodecruise
      @thecodecruise  24 дні тому +1

      Yes

    • @LeeYeon-qv1tz
      @LeeYeon-qv1tz 21 день тому +1

      @@thecodecruise Thanks for replying! I want to store CSV files in vector store and ask openai to generate a content based on a CSV file. But openai has to go through all CSV files for that. Is this achievable?

    • @thecodecruise
      @thecodecruise  21 день тому +1

      @@LeeYeon-qv1tz This is achievable, you can tweak your openai assistant to just use one CSV file. I would also recommend using pandasAI for this task, check the documentation here docs.pandas-ai.com/

    • @LeeYeon-qv1tz
      @LeeYeon-qv1tz 21 день тому

      @@thecodecruise Thanks!