mirror of
https://github.com/getzep/graphiti.git
synced 2025-07-05 16:12:25 +00:00
15 lines
232 B
Python
15 lines
232 B
Python
![]() |
from fastapi import FastAPI
|
||
|
|
||
|
from graph_service.routers import ingest, retrieve
|
||
|
|
||
|
app = FastAPI()
|
||
|
|
||
|
|
||
|
app.include_router(retrieve.router)
|
||
|
app.include_router(ingest.router)
|
||
|
|
||
|
|
||
|
@app.get('/')
|
||
|
def read_root():
|
||
|
return {'Hello': 'World'}
|