Haneenkh commited on
Commit
6cc96b5
Β·
verified Β·
1 Parent(s): 419409f

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -12
README.md CHANGED
@@ -1,12 +1,54 @@
1
- ---
2
- title: Hanoon
3
- emoji: πŸ“Š
4
- colorFrom: pink
5
- colorTo: yellow
6
- sdk: gradio
7
- sdk_version: 5.30.0
8
- app_file: app.py
9
- pinned: false
10
- ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ https://huggingface.co/spaces/decodingdatascience/newrag-pine
3
+
4
+ # πŸ“ž Telecom Customer Support LLM with Groq API
5
+
6
+ This project demonstrates how to build a fast, production-grade AI-powered telecom customer support assistant using the **Groq API** and optimized GenAI configurations.
7
+
8
+ ## πŸ“Œ Project Overview
9
+
10
+ A step-by-step guide to:
11
+ - Sending POST requests using **Postman**
12
+ - Connecting to the **Groq API**
13
+ - Testing default vs. optimized GenAI configurations
14
+ - Applying structured **prompt templates**
15
+ - Deploying a simple LLM-powered support API
16
+
17
+ ## πŸ”§ Tech Stack
18
+
19
+ | Layer | Tool/Tech |
20
+ |---------------|-------------------------|
21
+ | LLM | [Groq API](https://groq.com/) |
22
+ | API Platform | FastAPI / Postman |
23
+ | Prompt Design | Custom templates |
24
+ | Deployment | Localhost / Cloud (optional) |
25
+
26
+ ## 🧠 AI Configuration
27
+
28
+ | Parameter | Description |
29
+ |---------------------|--------------------------------------|
30
+ | `temperature` | Controls randomness (default: 0.7) |
31
+ | `top_p` | Nucleus sampling |
32
+ | `max_tokens` | Max tokens to generate |
33
+ | `frequency_penalty` | Repetition control |
34
+ | `presence_penalty` | Topic diversity |
35
+
36
+ ## πŸ”„ Experiment Setup
37
+
38
+ ### 1. No Prompt Template + Default Config
39
+ - Basic user input
40
+ - Uses Groq defaults
41
+ - For benchmarking
42
+
43
+ ### 2. With Prompt Template + Tuned Config
44
+ - Structured input (e.g., role, intent, constraints)
45
+ - Custom temperature and token limits
46
+ - Optimized for domain-specific responses
47
+
48
+ ## πŸš€ Quickstart
49
+
50
+ ### Step 1: Clone the repo
51
+
52
+ ```bash
53
+ git clone https://github.com/your-username/telecom-support-llm.git
54
+ cd telecom-support-llm