https://github.com/imvickykumar999/ollama-webui
Build and deploy your own ChatBot locally using Ngrok : https://www.youtube.com/watch?v=-vlB9ErtZn0
https://github.com/imvickykumar999/ollama-webui
deepseek-r1 ngrok ollama postgresql vercel webui
Last synced: 7 months ago
JSON representation
Build and deploy your own ChatBot locally using Ngrok : https://www.youtube.com/watch?v=-vlB9ErtZn0
- Host: GitHub
- URL: https://github.com/imvickykumar999/ollama-webui
- Owner: imvickykumar999
- License: mit
- Created: 2025-01-28T06:36:02.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-02-04T12:28:51.000Z (8 months ago)
- Last Synced: 2025-02-04T13:29:26.910Z (8 months ago)
- Topics: deepseek-r1, ngrok, ollama, postgresql, vercel, webui
- Language: JavaScript
- Homepage: https://blogforge.pythonanywhere.com/blogs/build-and-deploy-your-own-chatbot-locally-using-ngrok/
- Size: 15.5 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `Quick Start`
```bash
python manage.py runserver
ngrok http --url=free-camel-deadly.ngrok-free.app 8000# in seperate terminal
ollama servepython app.py
python generate.pyollama create blogforge -f ./Modelfile
OLLAMA_USE_CUDA=1 ollama run blogforge
```>## `Custom Model`
>
>## `Ollama` : [`Source`](https://ollama.com/library/llama3.2)
```bash
Install:
curl -fsSL https://ollama.com/install.sh | sh
Run:
ollama serve
ollama run llama3.2
More:
ollama show llama3.2
ollama list
ollama ps
ollama stop llama3.2
ollama run llava "What's in this image? /home/Vicky/Pictures/Screenshot.png"
```>[](https://shiny-tribble-vqjxv5jp7w6hw6r-4040.app.github.dev/inspect/http)
>[](https://free-camel-deadly.ngrok-free.app/)## WebUI : [Blog](https://readmedium.com/geek-out-time-build-your-own-autonomous-ai-agent-backed-by-the-top-open-source-llm-deepseek-v3-and-9d04820f8f6d)
```bash
wget https://repo.anaconda.com/archive/Anaconda3-2024.10-1-Linux-x86_64.sh
sha256sum Anaconda3-2024.10-1-Linux-x86_64.sh
bash Anaconda3-2024.10-1-Linux-x86_64.sh
source ~/.bashrc
conda init
git clone https://github.com/browser-use/web-ui.git
cd web-ui/
conda info --env
conda activate base
pip install -r requirements.txt
playwright install
python webui.py --ip 127.0.0.1 --port 7788
```