<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by BrianknowsAI on Medium]]></title>
        <description><![CDATA[Stories by BrianknowsAI on Medium]]></description>
        <link>https://medium.com/@BrianknowsAI?source=rss-feb62c1e8909------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*nl2fno1CQH7nb1Kh9A7x-g.png</url>
            <title>Stories by BrianknowsAI on Medium</title>
            <link>https://medium.com/@BrianknowsAI?source=rss-feb62c1e8909------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Sat, 20 Jun 2026 09:16:40 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@BrianknowsAI/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[AskBrian RAG]]></title>
            <link>https://medium.com/@BrianknowsAI/askbrian-rag-42d17fd91148?source=rss-feb62c1e8909------2</link>
            <guid isPermaLink="false">https://medium.com/p/42d17fd91148</guid>
            <category><![CDATA[llm]]></category>
            <category><![CDATA[ai]]></category>
            <category><![CDATA[rags]]></category>
            <category><![CDATA[blockchain]]></category>
            <category><![CDATA[knowledge-base]]></category>
            <dc:creator><![CDATA[BrianknowsAI]]></dc:creator>
            <pubDate>Sat, 22 Jun 2024 06:35:25 GMT</pubDate>
            <atom:updated>2024-06-22T06:46:17.625Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/968/1*P0FLgc9Gg4It4VGnaO892g.png" /><figcaption>Try AskBrian now: <a href="https://www.brianknows.org/app/search">https://www.brianknows.org/app/search</a></figcaption></figure><p>Reading time: 5 minutes</p><p><em>This is an in-depth look at how Brian RAG works and how developers can build their own Knowledge Base and integrate it into their apps and/or Discord and Telegram bots through the Brian API.</em></p><p>✨We have <strong>a special promotion running</strong> that offers projects the opportunity to create their own KB and integrate it through our API (up to 3k calls a month for 6 months). ✨</p><p>Reach out to us on <a href="https://x.com/BrianknowsAI">X</a> if you are interested in knowing more!</p><h4>Introduction</h4><p>At <a href="https://www.brianknows.org/">BrianknowsAI</a>, our mission is to leverage advanced AI technologies to revolutionize the way people interact with the web3 world. We want to make it easier for anyone to use and understand blockchain-based services so that there is no such strong learning curve that can compromise the journey of experienced builders and newcomers.</p><h4>What is AskBrian?</h4><p><a href="https://www.brianknows.org/app/search">AskBrian</a> is our intelligent query system that utilizes a Retrieval Augmented Generation (RAG) framework to provide precise and relevant answers to your Web3-related questions. This feature is not just a search engine; it’s an advanced AI tool that understands your queries and delivers comprehensive responses by accessing a vast repository of manually curated Web3 documentation.</p><p>AskBrian is available completely FREE on the <a href="https://www.brianknows.org/app/search"><strong>Brian App</strong></a> for any users and for devs through our <a href="https://docs.brianknows.org/"><strong>API</strong></a>*.</p><p><em>*The free tier has 1k API call a month.</em></p><p>The AskBrian feature, both on the Brian APP and API, can point to four different knowledge bases:</p><ul><li><strong>Public KB</strong>: an overview of the main protocols and networks in the EVM space.</li><li><strong>Swarm</strong>: an overview of the Swarm ecosystem. Brian has received a grant from the Swarm Foundation.</li><li><strong>LIDO</strong>: an overview of the LIDO protocol, DAO, and how Ethereum staking works. Brian has received a grant from the LIDO DAO.</li><li><strong>ETHRome hackathon</strong>: an overview of the hackathon rules, tracks, and prizes. Useful as an AI assistant for hackers.</li></ul><h4>Understanding RAG</h4><p>RAG leverages the capabilities of modern Large Language Models (LLMs) such as ChatGPT, Llama-3, Mistral, etc.</p><p>These models possess great language understanding and text generation capabilities. Modern LLMs can be used for various tasks, such as summarization, question answering, or named entity recognition, and they also show emergent capabilities, meaning they can perform some tasks that are not trained for.</p><p>However, it is well-known these language models have some significant issues:</p><ol><li><strong>The data on which they have been trained is up to a certain date</strong>, so they are not updated with the latest news.</li><li><strong>They suffer from hallucinations</strong>. Often generating false responses. This can be misleading and harmful.</li></ol><blockquote>The RAG framework can handles both this issues, and currently is a SOTA mechanism to improve knowledge systems based on LLMs.</blockquote><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*Uiv1EUaYpgw1GCZx5j39lA.png" /><figcaption>How RAG works (src: <a href="https://medium.com/@tejpal.abhyuday/retrieval-augmented-generation-rag-from-basics-to-advanced-a2b068fd576c">https://medium.com/@tejpal.abhyuday/retrieval-augmented-generation-rag-from-basics-to-advanced-a2b068fd576c</a>)</figcaption></figure><p>What we do for AskBrian is <strong>manually collect a set of documents in various formats, such as web pages, YouTube videos, and text files</strong>, and create a knowledge base from them. For example, one of our knowledge bases could be entirely dedicated to all Web3 events in 2024. In this <strong>human-in-the-loop</strong> (HINL) pipeline, we leverage both our team&#39;s expertise and LLMs&#39; capabilities.</p><p>Once the documents are collected, they are divided (split) into various <strong>chunks</strong>. Often, documents are very long (consider an entire book, for instance), so breaking them into chunks facilitates future data retrieval.</p><p>After creating all our chunks, we <strong>embed them using a custom fine-tuned LLM.</strong></p><p>This process projects a piece of text into a highly dimensional <strong>vector space</strong>. The embedding preserves the text’s semantics, so pieces of text discussing similar topics will be situated close to each other in the vector space.</p><p>This method allows us to <strong>identify which documents cover similar subjects.</strong></p><h4>What do we do with the chunks and embeddings at this point?</h4><p>Suppose we receive a query from a user, such as “<em>What is EthRome?</em>”.</p><p>We project this query into the vector space, just like our documents, allowing us to identify which documents are similar to the query. This helps us determine which documents might contain the answer to the question.</p><p>Imagine that near the query “What is EthRome?” we find three documents (a Notion page, a YouTube video, and a tweet).</p><p>We can now use<strong> the text from these documents to formulate a richer question for the LLM we are using</strong>. For instance, one could use llama3, and construct the following contextualized prompt:</p><pre>Based on the following context: <br>Doc1 / Notion → ethrome is an event….. <br>Doc2 / Youtube → welcome to ethrome, this is an hackathon…. <br>Doc3 / X (Twitter) → join Ethrome… R<br>eply to the use question: What is EthRome?&quot;</pre><p>Now, the LLM will have a much richer context to work with, enabling it to provide a more accurate answer.</p><p>Additionally, it will be able to provide metadata from the documents used, such as the title, URL, and other relevant details.</p><h4>Creating Custom Collections</h4><p>One of the standout features of AskBrian is the ability to create custom collections on specific topics. If you need tailored information on a niche area within Web3, <strong>our team is ready to assist</strong>. Simply contact us, and we will help you curate a collection that meets your specific requirements.</p><p>One of our goal is to provide in the future a web application, where users can upload their knowledge bases and use it directly on Brian.</p><h4><strong>ℹ️ Stay tuned</strong></h4><p>👉🏻 Follow us on Twitter: <a href="https://twitter.com/BrianknowsAI">https://twitter.com/BrianknowsAI</a></p><p>👉🏻 Try the Brian Public Beta: <a href="https://www.brianknows.org/">https://www.brianknows.org/</a></p><p>👉🏻 Read the Brian doc: <a href="https://docs.brianknows.org/">https://docs.brianknows.org/</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=42d17fd91148" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[#buildinpublic — EP03: the LI.FI integration]]></title>
            <link>https://medium.com/@BrianknowsAI/buildinpublic-ep03-the-li-fi-integration-7fbb31f66bd0?source=rss-feb62c1e8909------2</link>
            <guid isPermaLink="false">https://medium.com/p/7fbb31f66bd0</guid>
            <category><![CDATA[web3]]></category>
            <category><![CDATA[ai]]></category>
            <dc:creator><![CDATA[BrianknowsAI]]></dc:creator>
            <pubDate>Thu, 01 Feb 2024 07:50:24 GMT</pubDate>
            <atom:updated>2024-02-01T07:50:24.796Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*5rHL5Sew08qbXcKAQDoiNQ.png" /><figcaption>Visit <a href="https://li.fi/">LI.FI</a> for more info</figcaption></figure><h3><strong>#buildinpublic — EP03: the LI.FI integration</strong></h3><p>Reading time: 3 minutes</p><p><em>This is the third Brian #buildinpublic, a series of articles where we share the amazing journey while building Brian. In this article, we’ll go over how the LI.FI integration has been crucial to offer users a vast choice of protocols for swapping and bridging tokens on several chains.</em></p><p><strong>About Brian</strong></p><p><a href="https://www.brianknows.org/">Brian</a> is your web3 AI assistant for making transactions, deploying contracts, and searching information and data by prompt in plain English. All the features available on the Brian App can be integrated into any protocol or wallet through the Brian APIs.</p><p>Brian’s mission is to set a new way of consuming web3 through text-based interaction and challenge the classic UX/UI of web3 that is often either too complex or too uninformative.</p><p>Read the full doc here: <a href="https://docs.brianknows.org/">https://docs.brianknows.org/</a></p><p><strong>About LiFi Protocol</strong></p><p><a href="https://li.fi/">LI.FI</a> is a multi-chain liquidity aggregation protocol that supports any-2-any swaps by aggregating bridges and DEX aggregators across +20 networks. The ideal solution for wallets and/or defi protocols that want to offer their users the possibility to bridge across most of the chains and swap using most of the DEXs.</p><p>Popular wallets like Metamask, Blockwallet, Edge Wallet, or defi protocols like Summer.fi and StakeDAO integrated the Li.Fi protocol APIs.</p><p>Read the full doc here: <a href="https://docs.li.fi/">https://docs.li.fi/</a></p><p><strong>Making transactions by prompt</strong></p><p>Brian transactions feature allows a user to perform on-chain operations such as “Bridge 100 USDC from Polygon to Gnosis” or “Can you swap 1 eth to dai on Arbitrum?” in a non-custodial way (!).</p><p>⚠️ <strong>Note</strong>: Brian is in private beta and to try these operations you have to be whitelisted. You can access this version by filling out this form <a href="https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/">here</a>.</p><p>Our end goal is to provide a single point of access to perform major web3 transactions via prompts, a growing trend after the AI explosion thanks to OpenAI. Brian wants to be among the projects leading all the Web3xAI intersections. Performing a transaction with a prompt breaks all those UX barriers that are an obstacle both for newbies and experienced builders.</p><h3>How much time do we lose every day finding the right bridge or the AMM where the token we want to swap has liquidity?</h3><p>If we want to reach mass adoption, we need to simplify a lot of the consumer apps UX and, after years of infra-tech development, there is now the possibility to offer users easier ways to interact with the chain, always in a non-custodial way.</p><p>In the long run, we want to implement all the main operations that can be done with a prompt, like transfer, swap, bridge, liquidity providing, mint of an nft, register of an ENS, and so on, the possibilities are endless!</p><p>We started with the most common user operations, which include swap, bridge, and transfer. While these are simple operations, the most common ones currently on the Web3, the most important implementation challenge for us was to offer users the ability to swap tokens on major AMMs and bridge them across major chains. This is when we discovered the LI.FI protocol!</p><p><strong>Problem: supporting several bridges and AMMs</strong></p><p>What are the common problems devs find when they have to integrate several AMMs and bridges?</p><ul><li><strong>Time-consuming integration<br></strong>Implementing different AMMs and bridges is complex because some of them work differently. This makes the 1-to-1 integration very time-consuming in both the development and testing phases.</li><li><strong>Error-proneness<br></strong>Integrating multiple AMMs and bridges manually increases the chances of errors and potential financial losses for users due to development mistakes/bugs.</li><li><strong>Maintenance and updates<br></strong>The implementation, often done through SDKs, needs constant updates. Consequently, maintaining and updating implementations for multiple AMMs and bridges becomes challenging.</li></ul><p>One possible solution is to implement an aggregator protocol that aggregates a set of AMMs offering just one point of access. However, using these Aggregators APIs often requires a private key and the payment of a monthly subscription. For bridges, the situation is even worse.</p><p><strong>Solution: Transaction by prompt feat LI.FI</strong></p><p>For all these reasons above, we decided to implement LIFI, an aggregator that aggregates more than 25 AMMs and 15 bridges across 20+ chains (full list <a href="https://docs.li.fi/list-chains-bridges-dexs-solvers">here</a>).</p><p>LIFI exposes an API for finding the most optimal routes for conducting cross-chain swaps and bridges. It also offers an easy-to-use Typescript SDK for generating the transaction calldata.</p><p>This is ideal for our prompting system because it allows users to describe in natural language the action of swapping/bridging by passing common input parameters that anyone would use to perform such an operation. When the user prompts an action (eg. “I want to swap 10 USDC for MATIC on Polygon”), our LLM extracts the parameters and feeds them to the LIFI SDK, extracts the best possible route, and returns it to the user, ready to be executed.</p><p>In addition, LIFI’s tools have output parameters that enable us to build an informative frontend for users. This is crucial as it allows us to visually show users what they are about to execute.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*WwJvoVhDORQzlDLcmbVUdw.png" /><figcaption>Prompt and transaction</figcaption></figure><p>Furthermore, LIFI offers us maximum flexibility as many optional parameters can be passed under the hood for customizing the aggregator behavior. For example, we can choose which AMMs and bridges users prefer to use or not use, as well as set parameters like custom slippage.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*OVvQtx62fIfm3cXN_cVcng.png" /><figcaption>The execution info</figcaption></figure><p><strong>Brian X LI.FI</strong></p><p>The integration of the technology offered by LI.FI and the innovation in web3 intent extraction offered by Brian is a perfect match from which emerges a new and useful solution for all web3 users.</p><p>To achieve the goal of breaking down barriers to interact with web3, Brian needs to offer a multichain and cross-chain product on which users can easily exchange and bridge as many tokens as possible. LI.FI is the perfect solution for this need!</p><p>We’re sure this is just the beginning of a long-term relationship with a protocol that will be widely integrated into any wallet and dApp in the web3 ecosystem.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=7fbb31f66bd0" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Introducing Brian Private Beta]]></title>
            <link>https://medium.com/@BrianknowsAI/introducing-brian-private-beta-90fe9159b10b?source=rss-feb62c1e8909------2</link>
            <guid isPermaLink="false">https://medium.com/p/90fe9159b10b</guid>
            <category><![CDATA[ai]]></category>
            <category><![CDATA[smart-contract-blockchain]]></category>
            <category><![CDATA[web3]]></category>
            <category><![CDATA[crypto]]></category>
            <category><![CDATA[intent]]></category>
            <dc:creator><![CDATA[BrianknowsAI]]></dc:creator>
            <pubDate>Tue, 14 Nov 2023 14:20:26 GMT</pubDate>
            <atom:updated>2023-11-14T14:21:18.876Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/910/1*Aj7HNEiODD-1BzfY0OTtVw.png" /><figcaption>All whitelisted addresses can now use Brian on Ethereum and several L2s!</figcaption></figure><p>📣 <strong>The Brian <em>Private Beta</em> is finally here! </strong>All the whitelisted users can research web3 info, deploy smart contracts, and finally perform transactions on several mainnets just by prompting in English. If you are a dev who wants to integrate Brian into a protocol or you are just curious about how Brian works, the <a href="https://brian-27.gitbook.io/developer-doc/"><strong>developer documentation</strong></a> is available now!</p><p>⚠️ Remember, <strong>Brian is a non-custodial solution and an early-stage project</strong>, so be careful when you perform transactions, the Brian team will not be responsible for any problems that occur while testing Brian user interface.</p><p>This Private Beta has the goal of receiving as much feedback as possible and improving in every possible way the product, so if you have any thoughts, suggestions, or business inquiries, we encourage you to reach out to us via email at <a href="mailto:info@brianknows.org">info@brianknows.org</a>. Your feedback will be instrumental in shaping the future of Brian within the web3 and AI landscape!</p><p><strong>🔐 Not whitelisted? No problem!</strong></p><p>Even if you find yourself outside the current whitelist, don’t FOMO! We believe everyone should have the chance to experience the future with Brian. You’re invited to fill out the form and you’ll gain access in the next few days.</p><p>We’re committed to ensuring as many enthusiasts as possible join us on this journey during the Private Beta, so don’t miss out: whitelist your address <a href="https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/"><strong>here</strong></a> and join us in this important phase, every single user, transaction, and feedback is of incredible value for us.</p><p><strong>🤔 But wait, what is Brian, and what’s new with the Private Beta?</strong></p><p>Brian is the first AI assistant to interact with web3. Brian enables users to do multiple actions, like performing transactions, learning how web3 works, and deploying smart contracts just by prompting in English.</p><p>Users can prompt their intentions, and Brian will build the corresponding action. Eg. “ I want to swap 100 usdc to eth” or “Explain how Uniswap v3 works”.</p><p>Since its founding<strong>, </strong>in June at the ETHPrague 2023 hackathon, Brian was available only on testnets. Read more about our story here:<br><a href="https://medium.com/@BrianknowsAI/buildinpublic-ep-01-brian-three-months-after-ethprague-e7316b3b1053">https://medium.com/@BrianknowsAI/buildinpublic-ep-01-brian-three-months-after-ethprague-e7316b3b1053</a></p><p>With the launch of the Private Beta, we are happy to announce that all whitelisted users can now perform actions on the following supported mainnets: <strong>Base, Ethereum, Arbitrum, Gnosis, Optimism, Polygon, and Linea.</strong> Goerli testnet is also available for those who want to try Brian without real tokens.</p><p>At the time of this article, Brian is composed of 3 tools:</p><ul><li><strong>Non-custodial Transaction Builder</strong></li><li><strong>Smart Contract Builder</strong></li><li><strong>Search Tool</strong></li></ul><p><strong>Non-custodial Transaction Builder: </strong>Users can express their intentions in plain English, and Brian will construct the transaction accordingly. This tool enhances the accessibility and user-friendliness of Web3 interactions, ensuring a smooth experience for both newcomers and experienced builders. Brian operates as a non-custodial service, requiring users to approve each action via Metamask or their chosen wallet before executing the transaction.</p><p>These are some of the actions supported by Brian:</p><ul><li><strong>Swap of ETH and ERC-20 tokens</strong><br><em>eg. I want to swap 10 USDC to xDai.</em></li><li><strong>Bridge of ETH and ERC-20 tokens<br></strong><em>eg. Bridge 10 xDAI to USDC from Gnosis to Arbitrum</em>.</li><li><strong>Transfer of ETH and ERC-20 tokens<br></strong><em>eg. I want to transfer 1100 USDC to 0xqc… on Ethereum.</em></li><li><strong>Crosschain swap of ETH and ERC-20 tokens<br></strong><em>eg. Bridge 100 GHO to GRT from Gnosis to Arbitrum.</em></li><li><strong>More operations in one prompt (</strong>Be careful: always specify the amount!)<br><em>eg. I want to bridge 1000 USDC to Polygon and then swap 50 USDC to wETH.</em></li><li><strong>Independent operations in one prompt<br></strong><em>eg. </em>swap 100 usdc to usdt and swap 100 usdc to dai</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*yr3IwkIF_bWjtzwa2lYIUg.png" /><figcaption>Eg. how to easily swap and bridge tokens in Brian</figcaption></figure><p><strong>Smart Contract Builder: </strong>Smart Contract Builder is a unique tool that interprets English prompts to generate Solidity code. For example, a user might request to “deploy an ERC-20 token” and Brian responds with the corresponding Solidity code.</p><p>Moreover, Brian lets new developers understand what the code does with the “Explain this” feature. Finally, developers can edit the code and deploy the contract directly from Brian’s UI with the specific buttons.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*7DHuRaqS2TPe87J1X_3shA.png" /><figcaption>Eg. how to easily deploy an ERC20 in Brian</figcaption></figure><p><strong>Search Tool: </strong>The Search Tool is a research tool that utilizes the technology of a vector database to answer users’ questions about web3. The team manually selects resources from the most important protocols in the ecosystem, and Brian generates answers based on the closest resources to the user’s prompt. At the end of the response, the top three resources from which it was derived are shown, providing proof of the authority of the resources and allowing users to delve deeper into the answer by reading directly from the official documentation of the protocol.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*cC31_iq7gaDCEwq_fpB0Ug.png" /><figcaption>Eg. how to ask Brian how The Graph works</figcaption></figure><p><strong>📖 Developer Documentation is here!</strong></p><p>In the past weeks, the team has also been working on the launch of the <a href="https://brian-27.gitbook.io/developer-doc/"><strong>Developer Documentation</strong></a> for Brian, outlining the process for developers to seamlessly integrate Brian into third-party protocols or applications, including wallets, AMM interfaces, and Telegram/Discord bots.</p><p>All the functionalities available on the Brian App can be smoothly incorporated into other protocols using the forthcoming Brian APIs. While these APIs are not yet available, we encourage interested developers to explore the documentation. For any additional questions or clarifications, please feel free to reach out to us via email at <a href="mailto: info@brianknows.org">info@brianknows.org</a>.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*46VFUM-EgKsnYYzhnovVCQ.png" /><figcaption>An infographic showing how the Brian APIs work</figcaption></figure><p><strong>🗣️Call for feedback, interact with Brian team!</strong></p><p>Throughout the Private Beta, the Brian team will be accessible for feedback and one-on-one interviews with builders interested in learning more about the project and engaging with the team.</p><p>Join us in this exclusive Private Beta experience and be among the first to witness Brian in action showcasing its full capabilities with real-world transactions.</p><blockquote>Are you ready to immerse yourself in the future of AI-powered intent-based applications?</blockquote><p><strong>ℹ️ Stay tuned</strong></p><p>🐦 Follow us on Twitter: <a href="https://twitter.com/BrianknowsAI">https://twitter.com/BrianknowsAI</a></p><p>🌐 Try Brian: <a href="https://www.brianknows.org/">https://www.brianknows.org/</a></p><p>💻 Developer Doc: <a href="https://brian-27.gitbook.io/developer-doc/">https://brian-27.gitbook.io/developer-doc/</a></p><p>🔐 Register for the private beta: <a href="https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/">https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=90fe9159b10b" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[#buildinpublic - EP02: ETHRome, Polygon Builders House, and the upcoming private beta launch]]></title>
            <link>https://medium.com/@BrianknowsAI/buildinpublic-ep02-ethrome-polygon-builders-house-and-the-upcoming-private-beta-launch-7f7685a3aa06?source=rss-feb62c1e8909------2</link>
            <guid isPermaLink="false">https://medium.com/p/7f7685a3aa06</guid>
            <dc:creator><![CDATA[BrianknowsAI]]></dc:creator>
            <pubDate>Mon, 30 Oct 2023 12:45:35 GMT</pubDate>
            <atom:updated>2023-10-30T12:45:35.758Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*Lzjaso3KonbhNhmo76JF7g.png" /><figcaption>Whitelist your address here: <a href="https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/">https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/</a></figcaption></figure><p>Reading time: 2 minutes</p><p><em>This is the second Brian #buildinpublic, where we share some Insights on the amazing journey we’re living while building Brian. In this article, we’ll go over the experience at the ETHRome Hackathon, where we have rewarded two great projects with the Brian bounty, and the Polygon Builders House, a special 4-week program with other nine startups and Polygon mentors.</em></p><p><strong>🤖 Private Beta is coming! Whitelist your address here:</strong> <a href="https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/">https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/</a></p><p><strong>🏛️ ETHRome Hackathon</strong></p><p><a href="https://ethrome.org/">ETHRome</a> was the first web3 hackathon ever made in Rome and it took place from the 6th to the 8th at Citta dell’Altra Economia, a beautiful underground location in the center of the city.</p><p>For the Brian team, this has been one of the best experiences ever because most of the founders were among the ETHRome organizers and the event has been a success with incredible feedback from both sponsors and hackers. Brian presence at the hackathon was undeniably very strong, the team offered a bounty of 1k dollars* for the best AI-Web3 integrations and organized a side event with experts working in both fields.</p><p>* Paid in Brian API credits</p><p>The Brian Bounty winners are:</p><ul><li><strong>CarbonaraAI: </strong>CarbonarAI tackled the same challenges that Brian aims to address: improving user experience in the web3 ecosystem. To achieve this, CarbonarAI empowers users to access valuable data through intent-based search. The team has done an excellent job in leveraging AI and machine learning algorithms to create a user-friendly web interface for querying on-chain data. Kudos to the CarbonarAI team for their innovative approach!</li><li><strong>Quo-Roma: </strong>Quo-Roma has introduced a chat feature that responds to users’ questions using an LLM. This innovation greatly helps newcomers to the web3 space by providing quick answers and facilitating their learning journey. This approach is a significant step forward in making blockchain technology accessible and user-friendly. Great work by the Quo-Roma team!</li></ul><p>Congratulations to both teams! They will be among the first to have the opportunity to test the Brian API during the private beta phase!</p><p>We also organized a side event with a live demo of Brian and a roundtable session with experts from both AI and web3.</p><iframe src="https://cdn.embedly.com/widgets/media.html?type=text%2Fhtml&amp;key=a19fcc184b9711e1b4764040d3dc5c07&amp;schema=twitter&amp;url=https%3A//twitter.com/matteoikari/status/1710684723880640727%3Fs%3D20&amp;image=https%3A//i.embed.ly/1/image%3Furl%3Dhttps%253A%252F%252Fabs.twimg.com%252Ferrors%252Flogo46x38.png%26key%3Da19fcc184b9711e1b4764040d3dc5c07" width="500" height="281" frameborder="0" scrolling="no"><a href="https://medium.com/media/b3610f9b6f36276ac36be1e34a1a9b89/href">https://medium.com/media/b3610f9b6f36276ac36be1e34a1a9b89/href</a></iframe><p><strong>💜 Polygon Builders House</strong></p><p>The Brian team has been accepted to the Polygon Builders house in Lisbon, a 1-month accelerator with mentorships from Polygon Labs team members and some prizes at the end of the program. This is a great opportunity for sharing insights and feedback with other web3 founders and learning from the Polygon mentors.</p><iframe src="https://cdn.embedly.com/widgets/media.html?type=text%2Fhtml&amp;key=a19fcc184b9711e1b4764040d3dc5c07&amp;schema=twitter&amp;url=https%3A//twitter.com/PolygonLisbon/status/1713907383502569785%3Fs%3D20&amp;image=https%3A//i.embed.ly/1/image%3Furl%3Dhttps%253A%252F%252Fabs.twimg.com%252Ferrors%252Flogo46x38.png%26key%3Da19fcc184b9711e1b4764040d3dc5c07" width="500" height="281" frameborder="0" scrolling="no"><a href="https://medium.com/media/0899a5c2fb9084394ea3fbad586532c8/href">https://medium.com/media/0899a5c2fb9084394ea3fbad586532c8/href</a></iframe><p><strong>🔐 Private Beta</strong></p><p>The Beta version will be released in early November 2023 and will support the most important EVM mainnets including Ethereum, Polygon, Gnosis, Optimism, Arbitrum and Base. In addition, the APIs and technical documentation for integrating Brian into other protocols will be launched during this phase.</p><p>Why whitelist your address for the private beta:</p><ul><li>Exclusive possibility of trying Brian on several mainnets before anyone else</li><li>1-to-1 sessions (tg chats and voice calls) to hear your feedback and suggestions</li><li>Help us shape the future of web3 UX!</li></ul><p><strong>If you want to join the Private Beta and be among the first who try Brian on Mainnet, you have to whitelist your address here:</strong><br><a href="https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/">https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/</a></p><p><strong>ℹ️ Stay tuned</strong></p><p>This is the second Brian #buildinpublic article. We want to share with users, builders, and researchers all our journey and the daily challenges that we are facing both on web3 and AI.</p><p>👉🏻 Follow us on Twitter: <a href="https://twitter.com/BrianknowsAI">https://twitter.com/BrianknowsAI</a></p><p>👉🏻 Try the Brian Open Alpha: <a href="https://www.brianknows.org/">https://www.brianknows.org/</a></p><p>👉🏻 Whitelist your address for the private beta: <a href="https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/">https://app.deform.cc/form/7fa80086-c215-461b-bef1-15ead9aed17a/</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=7f7685a3aa06" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[#buildinpublic — EP 01: Brian, three months after ETHPrague]]></title>
            <link>https://medium.com/@BrianknowsAI/buildinpublic-ep-01-brian-three-months-after-ethprague-e7316b3b1053?source=rss-feb62c1e8909------2</link>
            <guid isPermaLink="false">https://medium.com/p/e7316b3b1053</guid>
            <category><![CDATA[artificial-intelligence]]></category>
            <category><![CDATA[transactions]]></category>
            <category><![CDATA[intent]]></category>
            <category><![CDATA[chatgpt]]></category>
            <category><![CDATA[web3]]></category>
            <dc:creator><![CDATA[BrianknowsAI]]></dc:creator>
            <pubDate>Fri, 22 Sep 2023 07:45:55 GMT</pubDate>
            <atom:updated>2023-09-22T07:45:55.337Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*d2k-s5UK426xwh8gKFn2Kg.png" /><figcaption>Hey Brian, I want to bridge 1 eth to Arbitrum</figcaption></figure><h3><strong>#buildinpublic — EP 01: Brian, three months after ETHPrague</strong></h3><p>Reading time: 5 minutes</p><p><em>In the first Brian #buildinpublic episode our team wants to go over all the incredible things that happened during the last three months. Everything started at the ETHPrague Hackathon in June and from that moment we have been working non-stop on the product features and GTM strategies. The next phase is the Brian Beta that we are launching in November 2023.</em></p><p><strong>🤖 What is Brian?</strong></p><p>Brian is the first ever non-custodial AI assistant for <strong>performing transactions by prompting.</strong> Users can prompt their intentions, and Brian will build the corresponding transaction:</p><ul><li><em>I want to bridge 1 eth to usdc</em></li><li><em>I want to transfer 10 usd to 0xabc.</em></li><li><em>I want to swap 10 usdc to eth from Polygon to Ethereum</em></li></ul><p>Brian leverages LLMs and other AI techniques (like few-shot learning) for the user intent extraction, then builds the transaction, and the user has to confirm and execute it.</p><p>Here is a live demo of a swap on Gnosis (…with a great UX trick!)</p><iframe src="https://cdn.embedly.com/widgets/media.html?type=text%2Fhtml&amp;key=a19fcc184b9711e1b4764040d3dc5c07&amp;schema=twitter&amp;url=https%3A//twitter.com/Frankc_eth/status/1697261285162070056%3Fs%3D20&amp;image=https%3A//i.embed.ly/1/image%3Furl%3Dhttps%253A%252F%252Fabs.twimg.com%252Ferrors%252Flogo46x38.png%26key%3Da19fcc184b9711e1b4764040d3dc5c07" width="500" height="281" frameborder="0" scrolling="no"><a href="https://medium.com/media/8dab2d6c6705721b326141b64b76c756/href">https://medium.com/media/8dab2d6c6705721b326141b64b76c756/href</a></iframe><p>When users do not have complete knowledge of the involved protocols, Brian also provides <strong>research by prompting </strong>on a custom-built<strong> </strong>knowledge base of updated web3 resources, for example:</p><ul><li><em>Explain the uniswap v3 protocol as I am 5 years old</em></li><li><em>What is The Graph?</em></li><li><em>What are the differences between Swarm and Ipfs?</em></li><li><em>How does the Gnosis Chain work?</em></li><li><em>What is the erc721vote?</em></li></ul><p>In comparison with ChatGPT, Brian has not only updated web3 resources but also can give users the exact resources it has used for the answer generation. It means after asking <em>“What is the erc721vote?” </em>it gives users a short answer and the resource (<a href="https://docs.openzeppelin.com/contracts/4.x/api/governance">https://docs.openzeppelin.com/contracts/4.x/api/governance</a>).</p><p>This research service can be used also as a Discord/Telegram bot or as a personal assistant to hackers during Hackathon. For the ETHRome hackathon, there is a special “ETHRome 2023 Knowledge Base” that the users can leverage to ask for info about schedule, location, or bounties.</p><blockquote>The combination of the two features (transaction and research by prompting) can help a lot of new and experienced builders in their daily interaction and comprehension of the web3 world.</blockquote><p><strong>🏆 ETHPrague and AugmentHack Hackathon</strong></p><p>Brian is receiving great attention from both AI and web3 famous projects. At the ETHPrague Hackathon, the project won 5 first prizes:</p><ul><li>Building on Gnosis Chain</li><li>Best GHO Hack (AAVE)</li><li>Deploy on Taiko</li><li>Best use of Existing Subgraphs (The Graph)</li><li>Top project (<a href="http://Gateway.fm">Gateway.fm</a>)</li></ul><p>During ETHCC week, Brian’s team participated in the AugmentHack hackathon (a competition more focused on AI) and won three other prizes:</p><ul><li>Recognition Prize (AugmentHack)</li><li>Best use of Bacalhau &amp; Lilypad Network</li><li>1 Prize for the best use of Hugging Face</li></ul><p>Moreover, recently it has been granted a $10k bounty from the Swarm Foundation and the team has applied for other several grants from blockchains and protocols.</p><p><strong>🌐 Open Alpha</strong></p><p>The Open Alpha was launched in June and it allows users to test some specific operations on the <strong>Goerli testnet. </strong>For the research feature, anyone can ask Brian questions on a limited list of web3 topics.</p><p>The supported actions on Goerli include:</p><ol><li>Balance of (native coin/ERC20)</li><li>Total supply of (ERC20)</li><li>Token transfers (native coin/ERC20)</li><li>Swapping assets</li></ol><p>The LLM model we’re using has been meticulously fine-tuned to allow each action to be expressed in multiple ways, offering users flexibility and ease of interaction.</p><p>Right now <strong>each action can be expressed in 80+ different way</strong>s such as “Can you swap 10 USDC for ETH” or “Can you exchange 10 USDC for ETH?” or “Can you buy 10 USDC of ETH?” for the swap operation.</p><p><strong>🔥 Beta Release</strong></p><p>The Beta version will be <strong>released in early November 2023 (</strong>date TBD) and will support the most important EVM mainnets including Ethereum, Polygon, Gnosis, Optimism, and Arbitrum. In addition, the <strong>SDK </strong>for integrating Brian into other protocols will be launched during this phase.</p><p>More info about the Beta launch will come in the next weeks!</p><p><strong>ℹ️ Stay tuned</strong></p><p>This is just the first Brian #buildinpublic article. We want to share with users, builders, and researchers all our journey and the daily challenges that we are facing both on web3 and AI.</p><p>👉🏻 Follow us on Twitter: <a href="https://twitter.com/BrianknowsAI">https://twitter.com/BrianknowsAI</a></p><p>👉🏻 Try the Brian Open Alpha: <a href="https://www.brianknows.org/">https://www.brianknows.org/</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=e7316b3b1053" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>