Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nightforger/hw-llama2-qa
https://github.com/nightforger/hw-llama2-qa
Last synced: 17 days 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: 2023-10-22T21:09:14.000Z (over 1 year ago)
- Last Synced: 2024-11-10T10:13:32.637Z (3 months ago)
- Language: Python
- Size: 704 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"
}'
```