[READ-ONLY] Mirror of https://github.com/andrioid/pt-llamaindex-pdf-chat. Prototype using llamaindex, ollama (or openai) to parse and chat about files in a folder
0

Configure Feed

Select the types of activity you want to include in your feed.

pt-llamaindex-pdf-chat / docker-compose.yml
310 B 14 lines
1services: 2 db: 3 image: postgres:15 4 environment: 5 POSTGRES_USER: devuser 6 POSTGRES_PASSWORD: devpass 7 POSTGRES_DB: devdb 8 ports: 9 - "5432:5432" 10 volumes: 11 - postgres_data:/var/lib/postgresql/data 12 13volumes: 14 postgres_data: