https://github.com/nightforger/hw-llama2-qa
https://github.com/nightforger/hw-llama2-qa
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nightforger/hw-llama2-qa
- Owner: NightForger
- Created: 2023-10-22T19:52:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-10T11:01:29.000Z (8 months ago)
- Last Synced: 2025-02-24T19:59:32.991Z (5 months ago)
- Language: Python
- Size: 705 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# Install
```
git clone https://github.com/r4ndompuff/HW-llama.git
cd HW-llama
docker build -t llm_username:v1 .
docker run -p 8080:8080 llm_username:v1
```# Use
```
curl -X 'POST' \
'http://0.0.0.0:8080/message' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"message": "Hi, tell me about insurance?",
"user_id": "1234"
}'
```