mirror of
https://github.com/placeholder-soft/chroma.git
synced 2026-01-12 22:44:55 +08:00
10 lines
148 B
Python
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())
|