2025-05-16 18:00:22 +04:00

8 lines
168 B
Python

import chromadb
import chromadb.config
from chromadb.server.fastapi import FastAPI
settings = chromadb.config.Settings()
server = FastAPI(settings)
app = server.app()