Logo
Explore Help
Register Sign In
yujunjun/graphiti
1
0
Fork 0
You've already forked graphiti
mirror of https://github.com/getzep/graphiti.git synced 2025-07-05 16:12:25 +00:00
Code Issues Packages Projects Releases Wiki Activity
graphiti/server/graph_service/main.py

15 lines
232 B
Python
Raw Normal View History

Add Fastapi graph service (#88) * 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
2024-09-06 11:07:45 -04:00
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'}
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.23.5 Page: 72ms Template: 12ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API