<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="372140" data-post-id="372140">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="ilnux" src="/assets/icons/user-9f439610.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  ilnux
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>What about support for the new DeepSeek? Is there a possibility to use local running models?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="372140" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/tidewave-web-in-browser-coding-agent-for-phoenix-and-liveview/72164/33">Post #32</a>
	                </div>
	            </div>
              <div id="likers-container-372140" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="372140"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #32"></div>
  </section>
</div>
    <div class="postbit" id="372155" data-post-id="372155">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="josevalim" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/josevalim/120/1787_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  josevalim
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Creator of Elixir</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Open up the desired chat and then run this in your console:</p>
<pre data-code-wrap="javascript"><code class="lang-javascript">// Extract chat ID from URL
let url = new URL(window.location.href);
let chatId = decodeURIComponent(url.searchParams.get('chat-id'));
console.log('Chat ID:', chatId);

// Find tidewave database and read from IndexedDB
indexedDB.databases().then(databases =&gt; {
    let tidewaveDb = databases.find(db =&gt; db.name.startsWith('tidewave:'));
    let request = indexedDB.open(tidewaveDb.name);
    
    request.onsuccess = function(event) {
        const db = event.target.result;
        const transaction = db.transaction(['chatMessages'], 'readonly');
        const store = transaction.objectStore('chatMessages');
        const getRequest = store.get(chatId);
        
        getRequest.onsuccess = function(event) {
            const result = event.target.result;
            console.log('Chat data:', result);
        };
    };
});
</code></pre>
<p>Once you run it, you will see something called “Chat data” logged as JSON. You can copy it to a Gist and share it with us.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="372155" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/tidewave-web-in-browser-coding-agent-for-phoenix-and-liveview/72164/34">Post #33</a>
	                </div>
	            </div>
              <div id="likers-container-372155" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="372155"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #33"></div>
  </section>
</div>
    <div class="postbit" id="372160" data-post-id="372160">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="preciz" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/preciz/120/15330_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  preciz
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>If you have GitHub Copilot pro and enable gpt-5-mini in your Copilot settings then you have that unlimited in theory and should match or be better than Sonnet 4.</p>
<p></p><div class="lightbox-wrapper"><a class="lightbox" href="https://forum.elixirforum.com/uploads/default/original/3X/3/d/3d3af747367d7671dbaacb24916a2a89d7436b4a.png" data-download-href="https://forum.elixirforum.com/uploads/default/3d3af747367d7671dbaacb24916a2a89d7436b4a" title="image" rel="nofollow"><img src="https://forum.elixirforum.com/uploads/default/original/3X/3/d/3d3af747367d7671dbaacb24916a2a89d7436b4a.png" alt="image" data-base62-sha1="8JFsuMrWMnPbd115CUFF1h6KXnY" width="419" height="559"><div class="meta"><svg class="fa d-icon d-icon-far-image svg-icon" aria-hidden="true"><use href="#far-image"></use></svg><span class="filename">image</span><span class="informations">419×559 30.5 KB</span><svg class="fa d-icon d-icon-discourse-expand svg-icon" aria-hidden="true"><use href="#discourse-expand"></use></svg></div></a></div><p></p>
<p>Tidewave and gpt-5-mini combo works very well.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="372160" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/tidewave-web-in-browser-coding-agent-for-phoenix-and-liveview/72164/35">Post #34</a>
	                </div>
	            </div>
              <div id="likers-container-372160" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="372160"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #34"></div>
  </section>
</div>
    <div class="postbit" id="372228" data-post-id="372228">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dacz" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dacz/120/31495_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dacz
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I first tried Tidewave in July and it felt like magic. I quickly subscribed to Pro Claude – it opened my eyes to AI’s potential.</p>
<p>Recently I wanted to set up Tidewave for another project and noticed that the website and docs now mainly guide users toward the paid browser version. If I didn’t already know Tidewave, I’d assume that’s the only way to use it.</p>
<p>I admire the Elixir team and Jose for creating something amazing. But this change feels a bit like something from a big-corp playbook. It made me wonder: why not keep both paths visible? Support those who want the convenience of the browser and those who want to integrate Tidewave into their usual engineering workflow.</p>
<p>Tidewave inspired me to rethink my dev process – I’d just do not like to see its open spirit obscured.</p>
<p>Thanks for all the work you do, and for the Elixir ecosystem.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="372228" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/tidewave-web-in-browser-coding-agent-for-phoenix-and-liveview/72164/36">Post #35</a>
	                </div>
	            </div>
              <div id="likers-container-372228" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="372228"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #35"></div>
  </section>
</div>
    <div class="postbit" id="372294" data-post-id="372294">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="mudasobwa" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/mudasobwa/120/5298_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  mudasobwa
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Creator of Cure</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="vanderhoop" data-post="20" data-topic="72164">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/vanderhoop/48/33467_2.png" class="avatar"> vanderhoop:</div>
<blockquote>
<p>I imagine more granular permissions are already on the roadmap</p>
</blockquote>
</aside>
<p>I cannot imagine how it could be designed better than already existing VCS + Auto-run. There is next to zero chance the interrupted in the middle agent would leave somewhat meaningful on the table. I did not try tidewave myself (because I am not working with web/phoenix, not because I doubt it’s amazing,) but the only fine-tuning setting really valuable would be “<strong>Ask when reaching out to modify stuff beyond this project</strong>” in Auto-run mode.</p>
<p>When I am after some massive change, I ask the buddy to start in a new branch. If it’s about tiny changes, <code>main</code> works. If something goes south, I always have <code>git checkout</code>.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="372294" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/tidewave-web-in-browser-coding-agent-for-phoenix-and-liveview/72164/37">Post #36</a>
	                </div>
	            </div>
              <div id="likers-container-372294" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="372294"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #36"></div>
  </section>
</div>
    <div class="postbit" id="372381" data-post-id="372381">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="Rich_Morin" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/Rich_Morin/120/2020_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  Rich_Morin
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Tidewave’s ability to work with running systems puts it squarely in the realm of dynamic data, including quantitative, relational, and temporal information. This makes me curious about the status and prospects for database integration. For example, various options for managing runtime data are intriguing:</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Relational_database" rel="noopener nofollow ugc">Relational database</a> (e.g., <a href="https://hexdocs.pm/ecto/Ecto.html" rel="noopener nofollow ugc">Ecto</a> / <a href="https://hexdocs.pm/ecto_sql/Ecto.Adapters.Postgres.html" rel="noopener nofollow ugc">PostgreSQL</a>)</li>
<li><a href="https://en.wikipedia.org/wiki/Graph_database" rel="noopener nofollow ugc">Graph database</a> (e.g., <a href="https://arangodb.com/" rel="noopener nofollow ugc">ArangoDB</a>, <a href="https://neo4j.com/" rel="noopener nofollow ugc">Neo4j</a>)</li>
<li><a href="https://en.wikipedia.org/wiki/Time_series_database" rel="noopener nofollow ugc">Time series database</a> (e.g., <a href="https://prometheus.io/docs/guides/opentelemetry/" rel="noopener nofollow ugc">Prometheus</a> / <a href="https://opentelemetry.io/" rel="noopener nofollow ugc">OpenTelemetry</a>)</li>
</ul>
<p>One way to approach this would be to set up each database of interest as an MCP (<a href="https://en.wikipedia.org/wiki/Model_Context_Protocol" rel="noopener nofollow ugc">Model Context Protocol</a>) server. FWIW, I had a <a href="https://share.google/aimode/yEGBAE0WzlW5cKYlm" rel="noopener nofollow ugc">chat with Google’s AI mode</a> about this. It said:</p>
<blockquote>
<p>Providing Tidewave with a graph database as an MCP server offers significant benefits by leveraging the database’s ability to model and traverse interconnected data structures. However, this setup also introduces complexities related to security, performance, and data modeling. The potential advantages are most pronounced for applications with complex, evolving relationships, which Tidewave can then use to generate more accurate and context-aware code.</p>
</blockquote>
<p>Comments? Clues?</p>
<p>-r</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="372381" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/tidewave-web-in-browser-coding-agent-for-phoenix-and-liveview/72164/38">Post #37</a>
	                </div>
	            </div>
              <div id="likers-container-372381" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="372381"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #37"></div>
  </section>
</div>
    <div class="postbit" id="372440" data-post-id="372440">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="josevalim" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/josevalim/120/1787_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  josevalim
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Creator of Elixir</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="vanderhoop" data-post="20" data-topic="72164">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/vanderhoop/48/33467_2.png" class="avatar"> vanderhoop:</div>
<blockquote>
<p>I imagine more granular permissions are already on the roadmap, but I wanted to mention the need explicitly so that folks can choose to upvote it to influence its priority, as approving is tedious for innocuous commands, and the ‘Auto-run mode’ is a no-can-do for many folks who are just evaluating the tool or have yet to containerize its execution.</p>
</blockquote>
</aside>
<aside class="quote no-group" data-username="dimitarvp" data-post="22" data-topic="72164">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dimitarvp/48/38664_2.png" class="avatar"> dimitarvp:</div>
<blockquote>
<p>I second <a class="mention" href="/u/vanderhoop" rel="nofollow">@vanderhoop</a>’s concern here: I’d like to try it but I want finer-grained permissions because I am not looking forward to containerizing my dev env (haven’t done it in a while and I am sure it’s not going to go quick or easy).</p>
</blockquote>
</aside>
<p>You can now customize which tools to allow/deny/ask in your settings.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="372440" data-batch-url="/posts/batch_likers">
                        4
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/tidewave-web-in-browser-coding-agent-for-phoenix-and-liveview/72164/39">Post #38</a>
	                </div>
	            </div>
              <div id="likers-container-372440" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="372440"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #38"></div>
  </section>
</div>
    <div class="postbit" id="372445" data-post-id="372445">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="vanderhoop" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/vanderhoop/120/33467_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  vanderhoop
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote group-livebook_core_team" data-username="josevalim" data-post="39" data-topic="72164">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/josevalim/48/1787_2.png" class="avatar"> josevalim:</div>
<blockquote>
<p>You can now customize which tools to allow/deny/ask in your settings.</p>
</blockquote>
</aside>
<p>Thanks for the update, <a class="mention" href="/u/josevalim" rel="nofollow">@josevalim</a>! Tell the team nice work; it’s super simple to scan through the perms and setup <img src="https://forum.elixirforum.com/images/emoji/apple/+1.png?v=15" title=":+1:" class="emoji" alt=":+1:" loading="lazy" width="20" height="20"></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="372445" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/tidewave-web-in-browser-coding-agent-for-phoenix-and-liveview/72164/40">Post #39</a>
	                </div>
	            </div>
              <div id="likers-container-372445" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="372445"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #39"></div>
  </section>
</div>
    <div class="postbit" id="372469" data-post-id="372469">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="apsori" src="/assets/icons/user-9f439610.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  apsori
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I really haven’t been using much of the AI stuff in my development. So what does Tidewave Web help me with as a developer?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="372469" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/tidewave-web-in-browser-coding-agent-for-phoenix-and-liveview/72164/41">Post #40</a>
	                </div>
	            </div>
              <div id="likers-container-372469" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="372469"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #40"></div>
  </section>
</div>
    <div class="postbit" id="372479" data-post-id="372479">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="preciz" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/preciz/120/15330_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  preciz
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>It can help with most of the things at this point.</p>
<p>For example I just told it to find if we are missing some <code>log_user_action</code> calls in our codebase at places where we change data and it found the places we do and filled in the missing <code>log_user_action</code> calls.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="372479" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/tidewave-web-in-browser-coding-agent-for-phoenix-and-liveview/72164/42">Post #41</a>
	                </div>
	            </div>
              <div id="likers-container-372479" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="372479"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #41"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <a class="load-more-button" data-turbo-stream="true" href="/topics/72164/load_more?page=5">Load more posts (16 remaining)</a>
</div></template></turbo-stream>