diff --git a/docs/package.json b/docs/package.json index 7269998..e17df4e 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "ai-backend-docs", - "version": "0.1.2", + "version": "0.1.7", "description": "Documentation for the AI Backend project", "scripts": { "docs:dev": "vitepress dev src", diff --git a/requirements.txt b/requirements.txt index b3bc7c0..144e74d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ -ollama~=0.2.1 -fastapi~=0.111.0 -pydantic~=2.8.0 -mypy~=1.10.1 +fastapi~=0.111.1 +ollama~=0.3.0 +pydantic~=2.8.2 +mypy~=1.11.0 mypy-extensions~=1.0.0 -pytest~=8.2.2 +pytest~=8.3.1 # Optional dependencies black~=24.4.2 diff --git a/src/main.py b/src/main.py index ec9ba6f..cadbd3f 100644 --- a/src/main.py +++ b/src/main.py @@ -6,7 +6,7 @@ app = FastAPI( title="AI Backend", description="ai backend for your app powered by llama3", - version="0.1.6", + version="0.1.7", ) origins = ["*"]