Loading video...

Video Failed to Load

Go Home

Big News! Block Convey Drive is Here! ๐Ÿš€ Your Web3 Drive: Decentralized, Secure, Limitless A Bold Step Toward a Stronger, Safer Future Weโ€™re thrilled to announce the launch of Block Convey Drive - Block Convey Drive offers secure, decentralized storage solutions tailored for web 3. Our AI assistant -...

13,644 views โ€ข 1 year ago โ€ขvia X (Twitter)

10 Comments

Atul Kumar's profile picture
Atul Kumar1 year ago

Support Here -

Hasan's profile picture
Hasan1 year ago

@blockconvey great share atul , will check it

RAVI KUMAR SAHU's profile picture
RAVI KUMAR SAHU1 year ago

@blockconvey Supported

Aryan Rakib's profile picture
Aryan Rakib1 year ago

@blockconvey Will definitely check it out

Neel Shah's profile picture
Neel Shah1 year ago

@blockconvey Amazing share

Md Riyazuddin's profile picture
Md Riyazuddin1 year ago

@blockconvey Exciting news! Block Convey Drive offers a game-changing decentralized storage solution with AI-powered assistance. Huge step forward

JORDAN's profile picture
JORDAN1 year ago

@blockconvey Supported

Priyank Ahuja's profile picture
Priyank Ahuja1 year ago

@blockconvey good one

Fakhr's profile picture
Fakhr1 year ago

@blockconvey I am done with support

Tania Sahai's profile picture
Tania Sahai1 year ago

@blockconvey Supported!

Related Videos

๐Ÿš€Exciting News: The Lit Agent Wallet is Now an elizaOS Plugin! ๐Ÿš€ Weโ€™re thrilled to share that the Lit Agent Walletโ€”a decentralized system that empowers agents with a private key stored securely across an MPC + TEE network (Lit)โ€”is now available as a plugin for ElizaOS!๐ŸŽ‰ This integration brings unparalleled flexibility and security to your decentralized workflows. Whether you're an EOA, a smart account, or a DAO, you can now set tools and policies on-chain that your agents can use, all while ensuring your private keys remain secure and decentralized. ๐Ÿ”’ What Does This Mean for You? >Enhanced Security: Private keys are fragmented and stored across the Lit network, leveraging MPC (Multi-Party Computation) and TEE (Trusted Execution Environment) for maximum security. >On-Chain Control: Set and manage tools, policies, and permissions directly on-chain, giving users and DAOs full control over what your agents can do. >Seamless Integration: As an ElizaOS plugin, the Lit Agent Wallet is now easier than ever to integrate into your existing workflows. Check out the video for a walk through of the setup, configuration, and use cases of the Lit Agent Wallet within ElizaOS. Weโ€™ll show you just how easy it is to get started and unlock the full potential of decentralized agents. Get Started Today! Ready to take your agent operations to the next level? Install the Lit Agent Wallet plugin on ElizaOS and experience the future of secure, on-chain agent asset management. ๐Ÿ”— ๐Ÿ”— Letโ€™s build a more intelligent and decentralized future together! ๐ŸŒ

Lit Protocol ๐Ÿ”‘

41,989 views โ€ข 1 year ago

โšก๏ธWe are excited to announce that our new no-code Enterprise Platform is NOW available in private beta! As RAG apps advance from prototype to production weโ€™ve been overwhelmed by requests for an enterprise grade solution to provide these applications with the data they need. Designed to make it easy to get your data #RAGready, our Platform can preprocess more than 25 file types and soon will be fully #multimodal, also able to ingest audio, video and image files. We ship with a baseline suite of source connectors, including Amazon Web Services S3, Microsoft Azure Blob Storage, OneDrive, SFTP, Databricks Delta Table, Google Drive, Salesforce, Elastic, OpenSearch, and Google Cloud storage with many more fast following. Platform transforms your documents into a standardized JSON schema, broken down into semantically coherent elements allowing you to reconstruct your document in the manner most useful to you. Want only the narrative text but not the headers and footers? This is entirely configurable through the UI. Additionally, we generate more than 30 types of metadata for each element to make it easy to curate the data being written downstream and to support metadata filtering during retrieval. Smart chunking and the ability to choose from a range of embedding models are in from launch, delivering a turnkey solution for chunk and embedding experimentation. As for destination connectors, we've got that covered too, with Amazon Web Services S3, Pinecone, Chroma , Weaviate AI Database, Google Cloud storage, MongoDB, Microsoft Azure cognitive search, PostgreSQL, Elastic, OpenSearch, and Databricks Delta Table. And of course, all of this can be scheduled to keep your data continuously hydrated. The private-beta is live today! Sign-up to get access and come build the future of LLM data foundations with us: ๐Ÿš€ #ETLforLLMs #AI #DataPreprocessing #DataScience #DataTransformation #LLMs #ETL #ML #PreppingData #MachineLearning #RAG #Engineer #Unstructured #Unstructuredio #RetrievalAugmentedGeneration #multimodal #AIJobs

Unstructured

21,874 views โ€ข 2 years ago

Most developers can't explain how Single Sign-On (SSO) works. โ€‹ This was one of my favorite questions during technical interviews. I love to ask about it because it's not a trivial topic. โ€‹ Here is a 5-minute overview of how Single Sign-On works. โ€‹ We all hate passwords; the less we use them, the better, and SSO helps with that. โ€‹ When you log in to Google once and visit YouTube, Gmail, Drive, and any other connected service without re-entering your password, three players are working behind the scenes: โ€‹ โ€ข A user trying to access an application. You, in this case. โ€ข The application you want to access. For example, YouTube. โ€ข An Identity Provider (IDP) that will verify your identity. Google, in this case. โ€‹ Here is what happens when you try to access one application for the first time: โ€‹ 1. You try to log in to YouTube, and the application redirects you to the Identity Provider (IDP) for authentication. โ€‹ 2. The IDP (Google) checks your credentials and confirms your identity. It creates a new session for you on its server and sets a session cookie in your browser. โ€‹ 3. The IDP also creates a token for YouTubeโ€”a small piece of data that contains information about your identity. โ€‹ 4. Your browser grabs the token and presents it to YouTube. โ€‹ 5. YouTube checks the token, and if it is valid, lets you in. โ€‹ But then you want to access Google Drive: โ€‹ 1. You go to Google Drive, and the application redirects you to the IDP. โ€‹ 2. The IDP recognizes that you are still logged in because you have the session cookie. It doesn't need to ask for your credentials. โ€‹ 3. Instead, the IDP generates a new token for Drive. โ€‹ 4. Your browser grabs the token and presents it to Google Drive. If the token is valid, Drive lets you in. โ€‹ You can now access multiple applications without re-entering your password. This is probably one of the best things we've invented since sliced bread! โ€‹ But, of course, implementing Single Sign-On is a nightmare! If you are a developer, don't try to reinvent the wheel. I've been implementing SSO since dinosaurs were around, and I can tell you you want to check out Auth0. โ€‹ Auth0 makes implementing SSO 100x easier. They just updated their free plan, and you get a lot without having to pay a single cent. 25,000 monthly active users, unlimited social connections, and you can go to production with custom domains. FOR FREE! โ€‹ They are sponsoring this post. To save your time, keep your sanity, and have a really solid and secure solution, head over to their website: โ€‹

Santiago

204,895 views โ€ข 1 year ago

๐ƒ๐ž๐ฌ๐ญ๐ซ๐š ๐๐ž๐ญ๐ฐ๐จ๐ซ๐ค | $DSYNC ๐Ž๐ง๐ž-๐‚๐ฅ๐ข๐œ๐ค ๐๐จ๐๐ž ๐๐ž๐ญ๐š ๐ข๐ฌ ๐‹๐ˆ๐•๐„ Weโ€™re excited to announce the launch of the ๐ƒ๐ž๐ฌ๐ญ๐ซ๐š ๐Ž๐ง๐ž-๐‚๐ฅ๐ข๐œ๐ค ๐๐จ๐๐ž Beta, starting with Storage Nodes for Mac and Windows users! This is more than just a featureโ€”itโ€™s the next leap in decentralized computing, designed to make ๐ซ๐ฎ๐ง๐ง๐ข๐ง๐  ๐ง๐จ๐๐ž๐ฌ ๐š๐ฌ ๐ฌ๐ข๐ฆ๐ฉ๐ฅ๐ž ๐š๐ฌ ๐œ๐ฅ๐ข๐œ๐ค๐ข๐ง๐  ๐š ๐›๐ฎ๐ญ๐ญ๐จ๐ง. Hereโ€™s what this means for YOU: ๐Ÿ–ฑ๏ธ ๐Ž๐ง๐ž-๐‚๐ฅ๐ข๐œ๐ค ๐’๐ข๐ฆ๐ฉ๐ฅ๐ข๐œ๐ข๐ญ๐ฒ Gone are the days of complicated node configurations. Whether youโ€™re a seasoned tech expert or a complete beginner, deploying a node has never been simpler. With just one click, you can join the Destra ecosystem and start contributing to the decentralized network in minutesโ€”no technical skills needed! ๐Ÿ’ช ๐…๐ฎ๐ž๐ฅ๐ข๐ง๐  ๐š ๐†๐ฅ๐จ๐›๐š๐ฅ ๐ƒ๐ž๐œ๐ž๐ง๐ญ๐ซ๐š๐ฅ๐ข๐ณ๐ž๐ ๐๐ž๐ญ๐ฐ๐จ๐ซ๐ค Your node powers the Destra Network, supporting AI training, blockchain innovation, and LLM development. Together, weโ€™re building a decentralized future thatโ€™s secure, scalable, and accessible. -โšก ๐–๐ก๐š๐ญโ€™๐ฌ ๐๐ž๐ฑ๐ญ? ๐†๐๐” ๐๐จ๐๐ž๐ฌ Weโ€™re not stopping here. With the upcoming update, youโ€™ll also be able to deploy GPU nodes seamlessly, taking decentralized computing to a whole new level. -๐ŸŽฅ ๐‹๐ž๐š๐ซ๐ง ๐ข๐ง ๐Œ๐ข๐ง๐ฎ๐ญ๐ž๐ฌ To get you started, weโ€™ve created a step-by-step How-To video and attached it to this tweet, watch it now and see just how simple it is ๐ŸŒ $๐Ÿ“๐ŸŽ๐ŸŽ,๐ŸŽ๐ŸŽ๐ŸŽ ๐ˆ๐ง๐œ๐ž๐ง๐ญ๐ข๐ฏ๐ž ๐๐ซ๐จ๐ ๐ซ๐š๐ฆ Weโ€™re rolling out an exclusive $500,000 incentive program to accelerate adoption. Details about how you can participate and earn rewards will be revealed later this weekโ€”stay tuned! From AI training to seamless dApp creation with Destra Genesis, weโ€™re building the tools to redefine whatโ€™s possible in crypto. Download the beta now and be part of the Destra Network. ๐Ÿ“ฅ Download here:

Destra Network

41,855 views โ€ข 1 year ago