File size: 834 Bytes
8989f90
 
 
 
bbd5821
8989f90
 
 
 
 
 
 
 
 
 
 
 
 
bbd5821
7890b15
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
services:
  - type: web
    name: artisan-rag-chatbot-api
    runtime: python
    repo: https://github.com/AbhishekRP2002/artisan-chatbot
    plan: free
    autoDeploy: true
    envVars:
      - key: SAMBANOVA_API_KEY
        sync: false
      - key: AZURE_OPENAI_ENDPOINT
        sync: false
      - key: AZURE_OPENAI_API_KEY
        sync: false
      - key: MILVUS_URI
        sync: false
    buildCommand: pip install -r requirements.txt
    startCommand: uvicorn src.app:app --host 0.0.0.0 --port $PORT

  # - type: web
  #   name: Chainlit-Artisan-Assistant
  #   runtime: python
  #   repo: https://github.com/AbhishekRP2002/artisan-chatbot
  #   plan: free
  #   autoDeploy: true
  #   region: frankfurt
  #   buildCommand: pip install -r requirements_cl.txt
  #   startCommand: chainlit run src/chainlit_app.py -h --port $PORT