Skip to content

Commit

Permalink
Updated versions and deployment docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jrichardson97 committed Jan 25, 2024
1 parent 0dfd75f commit 2bc69ee
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ pip install -r .\requirements.txt
# Start FastAPI/Uvicorn Server
uvicorn main:app --reload

# Server Update Steps
1) Push changes and make new release on github
- Make sure release version matches FastAPI docs version in kg_summarizer/server.py and setup.py
2) Update Helm chart
- cd translator-devops/helm/kg-summarizer
- helm -n translator-dev upgrade -f values-populated.yaml kg-summarizer .
2 changes: 1 addition & 1 deletion kg_summarizer/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class EdgeItem(BaseModel):
parameters: Parameters


KG_SUM_VERSION = "0.0.3"
KG_SUM_VERSION = "0.0.4"

# declare the application and populate some details
app = FastAPI(
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

setup(
name="kg-summarizer",
version="0.1",
version="0.0.4",
author="Joey Richardson",
author_email="[email protected]",
url="https://github.com/jrichardson97/kg-summarizer",
description="Knowledge graph summarization using large language models",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["kg_summarizer"],
)
)

0 comments on commit 2bc69ee

Please sign in to comment.