Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nightforger/hw-llama2-qa


https://github.com/nightforger/hw-llama2-qa

Last synced: 17 days ago
JSON representation

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"
}'
```