Text Generation
Transformers
GGUF
English
llama
text-generation-inference
unsloth
Customer-Support-Bot
conversational
How to use from
llama.cppInstall from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf praneethposina/customer_support_bot:# Run inference directly in the terminal:
llama-cli -hf praneethposina/customer_support_bot:Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf praneethposina/customer_support_bot:# Run inference directly in the terminal:
./llama-cli -hf praneethposina/customer_support_bot:Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf praneethposina/customer_support_bot:# Run inference directly in the terminal:
./build/bin/llama-cli -hf praneethposina/customer_support_bot:Use Docker
docker model run hf.co/praneethposina/customer_support_bot:Quick Links
Customer Support Chatbot with LLaMA 3.1
An end-to-end customer support chatbot solution powered by fine-tuned LLaMA 3.1 8B model, deployed using Flask, Docker, and AWS ECS.
Overview
This project implements a sophisticated customer support chatbot leveraging the LLaMA 3.1 8B model fine-tuned on customer support conversations. The solution uses LoRA fine-tuning and various quantization techniques for optimized inference, deployed as a containerized application on AWS ECS with Fargate.
Features
- Fine-tuned LLaMA 3.1 Model: Customized for customer support using the Bitext customer support dataset
- Optimized Inference: Implements 4-bit, 8-bit, and 16-bit quantization
- Containerized Deployment: Docker-based deployment for consistency and scalability
- Cloud Infrastructure: Hosted on AWS ECS with Fargate for serverless container management
- CI/CD Pipeline: Automated deployment using AWS CodePipeline
- Monitoring: Comprehensive logging and monitoring via AWS CloudWatch
Model Details
The fine-tuned model is hosted on Hugging Face:
- Model Repository: praneethposina/customer_support_bot
- Github Repository: github.com/praneethposina/Customer_Support_Chatbot
- Base Model: LLaMA 3.1 8B
- Training Dataset: Bitext Customer Support Dataset
- Optimization: LoRA fine-tuning with quantization
Tech Stack
- Backend: Flask API
- Model Serving: Ollama
- Containerization: Docker
- Cloud Services:
- AWS ECS (Fargate)
- AWS CodePipeline
- AWS CloudWatch
- Model Training: LoRA, Quantization
Screenshots
Chatbot Interface
AWS CloudWatch Monitoring
Docker Logs
AWS Deployment
- Push Docker image to Amazon ECR
- Configure AWS ECS Task Definition
- Set up AWS CodePipeline for CI/CD
- Configure CloudWatch monitoring
Uploaded model
- Developed by: praneethposina
- License: apache-2.0
- Finetuned from model : unsloth/llama-3-8b-bnb-4bit
- Downloads last month
- 83
Hardware compatibility
Log In to add your hardware
4-bit
5-bit
8-bit
16-bit
Model tree for praneethposina/customer_support_bot
Base model
meta-llama/Meta-Llama-3-8B Quantized
unsloth/llama-3-8b-bnb-4bit
Install from brew
# Start a local OpenAI-compatible server with a web UI: llama-server -hf praneethposina/customer_support_bot:# Run inference directly in the terminal: llama-cli -hf praneethposina/customer_support_bot: