Spaces:
Sleeping
Sleeping
File size: 553 Bytes
b64e5f0 | 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 | ---
title: GraphRAG Knowledge AI Backend
emoji: 🤖
colorFrom: blue
colorTo: indigo
sdk: docker
app_port: 8000
pinned: false
---
# GraphRAG Knowledge AI Backend
This is the backend service for the GraphRAG Knowledge AI Platform built using Django, Django REST Framework, Neo4j, and ChromaDB.
## Running Locally
To run this backend locally, make sure you have Neo4j running:
```bash
docker run --name neo4j -p 7474:7474 -p 7687:7687 -e NEO4J_AUTH=neo4j/password neo4j:latest
```
Then run the Django server:
```bash
python manage.py runserver
```
|