tabby/deployment
Meng Zhang 8cf533016a
Move python code under tabby/ (#8)
* Add tabby config file

* Rename train.yaml to trainer.yaml

* Change server to relative import

* Move source files into tabby

* Rename conf
2023-03-25 12:20:29 +08:00
..
config Move python code under tabby/ (#8) 2023-03-25 12:20:29 +08:00
.gitignore Remove tokenizer in testdata/ 2023-03-24 09:53:48 +08:00
README.md Create README.md 2023-03-22 23:57:26 +08:00
docker-compose.dev.yml Move python code under tabby/ (#8) 2023-03-25 12:20:29 +08:00
docker-compose.triton.yml Remove tokenizer in testdata/ 2023-03-24 09:53:48 +08:00
docker-compose.yml Move python code under tabby/ (#8) 2023-03-25 12:20:29 +08:00

README.md

Deployment

  1. Start service
    docker-compose up
    
  2. Test API endpoint with curl
    curl -X POST http://localhost:5000/v1/completions -H 'Content-Type: application/json' --data '{
        "prompt": "def binarySearch(arr, left, right, x):\n    mid = (left +"
    }'