tabby/deployment
Meng Zhang 1038bb39a1
Add dagu for data processing job orchestration (#7)
* Install dagu

* Move dagu install to first stage

* Fix metrics

* Add DAGs for create dataset from code repository
2023-03-25 00:05:47 +08:00
..
config Add dagu for data processing job orchestration (#7) 2023-03-25 00:05:47 +08:00
.gitignore Remove tokenizer in testdata/ 2023-03-24 09:53:48 +08:00
Dockerfile Add dagu for data processing job orchestration (#7) 2023-03-25 00:05:47 +08:00
README.md Create README.md 2023-03-22 23:57:26 +08:00
docker-compose.dev.yml Add dagu for data processing job orchestration (#7) 2023-03-25 00:05:47 +08:00
docker-compose.triton.yml Remove tokenizer in testdata/ 2023-03-24 09:53:48 +08:00
docker-compose.yml Add dagu for data processing job orchestration (#7) 2023-03-25 00:05:47 +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 +"
    }'