mangled-data
mangled-data
I am loading mini batches like ```vectorstores = [Chroma(persist_directory=x, embedding_function=embedding) for x in dirs]``` How can I merge ?
```from chalice import Chalice app = Chalice(app_name='chalice-proxy-example') @app.route('/') def index(): return {"message": "Welcome to the root endpoint!"} @app.route('/resource/{proxy+}', methods=['GET', 'POST']) def resource_proxy(proxy): # proxy contains the path information. # For...
I would like to use chalice to setup API gateway. I start with a simple route ```@app.route('/') def index(): return {'hello': 'world'} @app.route('/customer1') def index(): return {'who': 'customer1'} @app.route('/customer2') def...
I had refactored the code in https://github.com/Chainlit/docs/blob/aa50e881dde660ee7393b0b80427e6c88524a3a5/examples/qa.mdx#L53 I am missing something on the flow. I thought on_chat_start would be invoked once per run, but it seems to be invoked periodically....