Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ductnn/chat-deepseek-ui
Chat UI for Deepseek
https://github.com/ductnn/chat-deepseek-ui
chatgpt deepseek
Last synced: 9 days ago
JSON representation
Chat UI for Deepseek
- Host: GitHub
- URL: https://github.com/ductnn/chat-deepseek-ui
- Owner: ductnn
- Created: 2025-02-01T07:28:57.000Z (10 days ago)
- Default Branch: master
- Last Pushed: 2025-02-01T08:22:00.000Z (10 days ago)
- Last Synced: 2025-02-01T09:24:07.301Z (10 days ago)
- Topics: chatgpt, deepseek
- Language: Python
- Homepage:
- Size: 208 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Chat deepseek UI
A simple web-based chat interface powered by Ollama's deep-seek model.
This tool provides an interactive, real-time chatting experience with the
assistant, using Streamlit for the frontend. The assistant processes and streams
responses back to the user, ensuring a seamless and engaging interaction.![](./assets/demo.png)
## Features
- **Real-time Chat Interface**: Allows for dynamic interaction with the assistant.
- **Persistent Chat History**: Maintains chat history between sessions.
- **Save & Load Chat History**: Automatically saves chat history to a JSON file for persistent conversations.### Setup
Install [ollama](https://ollama.com/download)
Pull deepseek-r1 model
```sh
ollama pull deepseek-r1
```Clone repo
```sh
git clone https://github.com/ductnn/chat-deepseek-ui.git
cd chat-deepseek-ui
```Install required packages:
```sh
pip install streamlit ollama
```If you still get build errors in package `pyarrow`, try installing `pyarrow`
as a binary:
```sh
pip install --only-binary=:all: pyarrow
```Run the app:
```sh
streamlit run app.py
```