* chore: Folder rearrangement * chore: Remove unused deps, and add mypy step in CI for graph-service * fix: Mypy errors * fix: linter * fix mypy * fix mypy * chore: Update docker setup * chore: Reduce graph service image size * chore: Install graph service deps on CI * remove cache from typecheck * chore: install graph-service deps on typecheck action * update graph service mypy direction * feat: Add release service image step * chore: Update depot configuration * chore: Update release image job to run on releases * chore: Test depot multiplatform build * update release action tag * chore: Update action to be in accordance with zep image publish * test * test * revert * chore: Update python slim image used in service docker * chore: Remove unused endpoints and dtos
896 B
896 B
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.