Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vector-serve/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:24.10
FROM ubuntu:24.04

RUN apt-get update && \
apt-get install -y \
Expand Down
2 changes: 0 additions & 2 deletions vector-serve/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
SOURCE_OBJECTS=app

format:
uv run black ${SOURCE_OBJECTS}
uv run ruff check --silent --fix --exit-zero ${SOURCE_OBJECTS}

download.models:
Expand All @@ -23,4 +22,3 @@ setup:

check:
uv run ruff check ${SOURCE_OBJECTS}
uv run black --check ${SOURCE_OBJECTS}
2 changes: 1 addition & 1 deletion vector-serve/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

logging.basicConfig(level=logging.DEBUG)

app = FastAPI(title="Tembo-Embedding-Service")
app = FastAPI(title="Embedding-Service")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
Expand Down
3 changes: 1 addition & 2 deletions vector-serve/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "app"
version = "0.1.0"
description = ""
authors = [
{ name = "Tembo", email = "engineering@tembo.io" }
{ name = "Adam Hendel", email = "adam@hendel.dev" }
]
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -21,7 +21,6 @@ dependencies = [
[tool.uv]
dev-dependencies = [
"ruff",
"black",
"pytest>=8",
"httpx>=0.27",
]
Expand Down
Loading
Loading