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

Поделиться
HTML-код
  • Опубликовано: 16 июн 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

  • @gatorreviews7487
    @gatorreviews7487 Месяц назад +2

    Sounds great! 🙌

  • @LearnWithShajeel
    @LearnWithShajeel Месяц назад +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  Месяц назад

      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 Месяц назад

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

  • @alankerrigan
    @alankerrigan Месяц назад +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  Месяц назад

      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 Месяц назад +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  Месяц назад

      Sure, I have a video on function calling which you can find here ruclips.net/video/nKz6aTIg47s/видео.html, its a two part video but explains the usage of function calling step by step used for assistants.

    • @LearnWithShajeel
      @LearnWithShajeel Месяц назад

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

    • @thecodecruise
      @thecodecruise  Месяц назад

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

  • @RAKARYAUDINALDANATADIKAR-lh9yj
    @RAKARYAUDINALDANATADIKAR-lh9yj 20 дней назад +1

    Terimakasih lu keren banget bang

  • @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.ruclips.net/video/qE36eBfYeR8/видео.htmlsi=pvPM8jZKm2kU8ixc
      2. ruclips.net/video/qd-6kuyvc8s/видео.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

  • @LeeYeon-qv1tz
    @LeeYeon-qv1tz Месяц назад +1

    Can we store csv files in vector store?

    • @thecodecruise
      @thecodecruise  Месяц назад +1

      Yes

    • @LeeYeon-qv1tz
      @LeeYeon-qv1tz Месяц назад +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  Месяц назад +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 Месяц назад

      @@thecodecruise Thanks!