File size: 175 Bytes
7c99225 | 1 2 3 4 5 6 7 8 | import chromadb
import chromadb.config
from chromadb.server.fastapi import FastAPI
settings = chromadb.config.Settings()
server = FastAPI(settings)
app = server.app()
|
7c99225 | 1 2 3 4 5 6 7 8 | import chromadb
import chromadb.config
from chromadb.server.fastapi import FastAPI
settings = chromadb.config.Settings()
server = FastAPI(settings)
app = server.app()
|