| .. | ||
| graph_service | ||
| .env.example | ||
| Makefile | ||
| poetry.lock | ||
| pyproject.toml | ||
| README.md | ||
graph-service
Graph service is a fast api server implementing the Graphiti package.
Running Instructions
-
Ensure you have Docker and Docker Compose installed on your system.
-
Clone the repository and navigate to the
graph-servicedirectory. -
Create a
.envfile in thegraph-servicedirectory with the following content:OPENAI_API_KEY=your_openai_api_key NEO4J_USER=neo4j NEO4J_PASSWORD=your_neo4j_password NEO4J_PORT=7687Replace
your_openai_api_keyandyour_neo4j_passwordwith your actual OpenAI API key and desired Neo4j password. -
Run the following command to start the services:
docker-compose up --build -
The graph service will be available at
http://localhost:8000. -
You may access the swagger docs at
http://localhost:8000/docs. -
You may also access the neo4j browser at
http://localhost:7474.