Nick
Nick
Where are you hosting it?
@proppy can you provide some additional guidance on this issue?
Yeah we should keep this in mind for the future, although it would end up being a breaking change.
So it's not surfaced in the response payload object?
As you seem to be familiar with the specific lines, would you mind posting them here? It seems like it should be feasible to flip a few bits.
This library supports Dialogflow as a fulfillment option but not Actions Builder.
I wanted to use it as an intermediary to verify my model is valid. Here's how I support the index.html form while also supporting the chatbot call: ```Python if request.form...
This is my whole prediction method: ```Python @app.route('/prediction', methods=['POST', 'GET']) def prediction(): if request.form != None and 'message' in request.form: msg = request.form['message'] response = pred(str(msg)) return jsonify(response) else: #...
Thanks for the short fix. Can you regenerate `test/sampleData/Mcp4725.py`, as it no longer matches what the tests generate.
In your LED case, each LED is a separate register? Our CI process currently does generate code based on the example peripherals and checks against our cached versions and runs...