Files
chroma/examples/sample-app/app.py
2022-11-24 00:17:24 -05:00

10 lines
148 B
Python

from flask import Flask
import chroma_client
app = Flask(__name__)
@app.route("/")
def hello():
return str(chroma_client.fetch_new_labels())