TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Create AI Agents with React

3 点作者 bazaz6 个月前
For the last couple of months, we&#x27;ve been exploring how to make agentic AI development more approachable for web developers.<p>Here&#x27;s what we have, so far:<p><pre><code> import { Agent } from &quot;react-agents&quot;; const NoteTaker = () =&gt; { return ( &lt;Agent&gt; &lt;Prompt&gt; You are a note-taking assistant that helps organize and summarize information. &lt;&#x2F;Prompt&gt; &lt;Memory type=&quot;vectorstore&quot; &#x2F;&gt; &lt;&#x2F;Agent&gt; ) } </code></pre> It&#x27;s somewhat inspired by [Priompt](<a href="https:&#x2F;&#x2F;github.com&#x2F;anysphere&#x2F;priompt">https:&#x2F;&#x2F;github.com&#x2F;anysphere&#x2F;priompt</a>): instead of rendering a user interface, our framework renders a prompt + action interface for AI agents.<p>The renderer is backed by a stateful agentic runtime loop, with a library of components you can import to add capabilities like TTS, database and social media integration. We want the experience to feel nice and webby like Vercel, but for AI agents.<p>For those interested in trying it out:<p><pre><code> npm install usdk -g usdk create </code></pre> We&#x27;re particularly curious about: - Does this approach feel natural to React developers? Does it help you transition to agentic AI? - DX roadblocks we should fix for our next release - Integrations you&#x27;d like us to add (We already have Discord, X, and we&#x27;re working on Twitter Spaces) - Different environments this can integrate with (we&#x27;ve tested local, electron, browser, and server)<p>The source is open and we&#x27;re actively working on improvements.<p>Links: - [1] Homepage: <a href="https:&#x2F;&#x2F;upstreet.ai" rel="nofollow">https:&#x2F;&#x2F;upstreet.ai</a> - [2] Documentation: <a href="https:&#x2F;&#x2F;docs.upstreet.ai" rel="nofollow">https:&#x2F;&#x2F;docs.upstreet.ai</a> - [3] Open-source GitHub repository: <a href="https:&#x2F;&#x2F;github.com&#x2F;UpstreetAI&#x2F;upstreet-core">https:&#x2F;&#x2F;github.com&#x2F;UpstreetAI&#x2F;upstreet-core</a>

1 comment

zohairhadi6 个月前
in the process of building a agent which writes SDAs after taking a spreadsheet as a datasource. this was pretty easy to setup. would be even better if we&#x27;re able to do this directly through the company comms channels like Slack or Discord.
评论 #42275451 未加载