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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: What GPT4 frontend do you use?

5 点作者 dsrtslnd23大约 2 年前
I&#x27;m curious to know which frontend alternatives you&#x27;ve been using to replace ChatGPT when working with the OpenAI API. As ChatGPT premium has a very low limit, I prefer to use the API but still want a similar (and hopefully better) UI.<p>My specific needs include:<p>- Token counting and cost estimation tools.<p>- Visibility into the sliding window of context in chat-style environments, as it&#x27;s unclear which parts are considered in OpenAI&#x27;s UI.<p>- Code compression and optimization techniques, such as stripping comments, removing irrelevant utility functions, or other methods often discussed here.<p>- Assistance with frontend coding: For instance, I struggle with managing React projects that have numerous files and require multiple changes for data passing. While the 32k model might help, it can be expensive.

5 条评论

rpastuszak大约 2 年前
<a href="https:&#x2F;&#x2F;www.chatbotui.com" rel="nofollow">https:&#x2F;&#x2F;www.chatbotui.com</a> works fine for me on desktop (had some issues on iOS -- could be related to my adblockers)<p>I use that with <a href="https:&#x2F;&#x2F;gptokens.com" rel="nofollow">https:&#x2F;&#x2F;gptokens.com</a> in another tab.<p>I&#x27;m still looking for a more iOS friendly one, ideally with good text-to-speech support and the ability to use my own API key.
sifuldotdev将近 2 年前
Till now I didn&#x27;t found any tools. But <a href="https:&#x2F;&#x2F;easyfrontend.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;easyfrontend.com&#x2F;</a> helps me a lot to achieve what I wanted in very short time.
oidar大约 2 年前
I think the best frontend is a client you write yourself. You can switch effortlessly between models - summarize to compress - edit the context to be more relevant. Strip out irrelevant context and so on. I like using it better than the web client most of the time. I&#x27;d share it, but it has lots of personal prompts and workflows that I&#x27;d rather keep private.
stadeschuldt大约 2 年前
I am currently using <a href="https:&#x2F;&#x2F;github.com&#x2F;Bin-Huang&#x2F;chatbox">https:&#x2F;&#x2F;github.com&#x2F;Bin-Huang&#x2F;chatbox</a>. It ticks some of the boxes you&#x27;ve mentioned.
verdverm大约 2 年前
While we are only starting to integrate LLMs into our tool, it was originally started to help deal with the React issue you describe, i.e. having to make related updates across large numbers of files. We wanted to have a single source of truth from which we generate the majority of the implementation. We are working to simplify and reduce the problem for ChatGPT by combining it with our code gen tech, helping to deal with the issues around limited context, hallucinations, and losing focus. I think the current generation of LLMs have fundamental limitations that will make large code bases intractable to them. Hell, even we mere mortals have issues with this and while the machines can be better at some things, they will fail spectacularly in other tasks we find trivial.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;hofstadter-io&#x2F;hof">https:&#x2F;&#x2F;github.com&#x2F;hofstadter-io&#x2F;hof</a>