Spaces:
Running
[ANNOUNCEMENT] π£ HuggingChat is closing for now
I have bittersweet news to share. π’
We are closing down huggingchat for now.
Huggingchat was launched in April 2023 when ChatGPT was just 5 months old and it was still quite hard to deploy a similar service. The goal of this app was to showcase that it was now possible to build an open source alternative to ChatGPT, building on top of the community's models and building blocks. πͺ
We also built Huggingchat as a testbed to optimize inference which led to the creation of text-generation-inference which in turn led to HF contributions to SGLang, vLLM, llama.cpp, and other LLM runtime engines since then.
In the past 27 months we've launched:
- π§ Assistants, an easy way to bundle a prompt, a model, and some tools into an easily-shareable URL you can send your friends
- π οΈ HuggingChat Tools, exposing the full ecosystem of Gradio Spaces straight from within the chat interface
- π¬ Many model launches were supported on HuggingChat: from OpenAssistant, all the LLamas, Phi-4, to Qwen, DeepSeek, Gemma.... π₯
The app has always been free and experimental. Today we are closing it to make room for something new and more integrated with the HF ecosystem. You can export your past conversations as a Zip file, to load them into another interface.
If you are looking for a cool alternative interface you should take a look at:
- LibreChat a clean and simple yet feature-packed chat interface
- openwebui β does it even need an intro anymore?
- Scira MCP, an up and coming MCP-centric chat interface
Finally, chat-ui (the codebase powering HuggingChat) is still maintained (GitHub repo).
You can 1-click deploy your own instance using the Chat UI Spaces Docker template.
What's happening to huggingchat π’ ?
I hope it's not too long.
no π
Also, how do I export my past conversations?
Hi everyone! π
This is also my last week at Hugging Face and I'm currently working on a simple page to let you export your personal data & conversation history from HuggingChat so you can reuse it on other platforms in the future. Let me know if you have any questions, I'm always happy to answer them.
It was a pleasure building this app for y'all π«‘
Thats sad.
I wished this never happened
Sorry if I missed it but could someone official tell us if there will be an option to export old HF Chat data or was it nuked?
Lack of information/responses kind of disappointing.
ΡΡΠΎ ΡΠ°ΠΊΠΎΠ΅ Π°Π²ΡΠΎΡΡΠΊΠΈΠΉ ΡΡΡ
Waking up one day, and seeing a barely functional export button is mad work!
https://librechat-librechat.hf.space/c/new
I add HF API key and error Something went wrong. Here's the specific error message we encountered: An error occurred while processing the request: 404 Not Found Troubleshooting URL: https://js.langchain.com/docs/troubleshooting/errors/MODEL_NOT_FOUND
Why it doesn't work, and how to fix it
Did everyone miss the fact that they were going to delete your data after two weeks? Did I hallucinate that? If I didn't, your data's gone, folks. Sorry.
Froce Γ vous et Γ l'Γ©quipe π
Hi, quick update regarding personal data, we decided to erase all the user data stored in the database in two weeks. So heads up you have two weeks to back up your data if you want to :)
If you have any doubts about what the data is used for, let me refer you to the privacy policy of HuggingChat : https://huggingface.co/chat/privacy
We endorse Privacy by Design. As such, your conversations are private to you and will not be shared with anyone, including model authors, for any purpose, including for research or model training purposes.
Wish there was a notification for this, I was away and couldn't export...
import React, { useState } from 'react';
import Sidebar from './Sidebar';
import Header from './Header';
import './Layout.css';
import { Outlet } from 'react-router-dom';
const Layout = () => {
const [collapsed, setCollapsed] = useState(true);
return (
<Header onToggle={() => setCollapsed(!collapsed)} />
<Outlet/>
</div>
</div>
</div>
);
};
export default Layout;