automaton82

Results 39 comments of automaton82

Cause appears to be use of `remarkMath` and `rehypeMathjax` in the react markdown use. The message could be cleansed before given, but that doesn't seem great. Ideally a central message...

Not yet I'd have to investigate if there's any clean way to do it. Easiest way is to remove the math stuff, but I assume you put it there for...

Same issue, but for mine the state is `undefined` ![Screenshot_20230908_195452_Home Assistant](https://github.com/nervetattoo/simple-thermostat/assets/4467711/6a61152b-844b-46c9-91da-3b6e0e8cff85) Yaml: ``` cards: - control: hvac: heat_cool: false version: 3 sensors: - entity: sensor.z_wave_thermostat_humidity_2 template: '{{state.text}}%' label: RH type:...

Enable "Use MMap" usually fixes it. See #1673

Note the query engine appears to have the same issue, so presumably this is a problem with the simplestore node.

I replicated the same issue with a fresh Docker image, so it's not the pathing on Windows (vectorstore has the wrong `/` in the path, but that doesn't seem to...

Okay I figured it out. This only fails the very first time, before the database has been created. It won't create the database if the call to do the embeddings...

I believe it would, yes. As a note this is what the LangChain nodes do, at least if you use the in-memory vector store. A prediction will cause an upsert....

Not a fix, but I believe the issue is here: ``` if (body.plainDataObj) { const encryptedData = await encryptCredentialData(body.plainDataObj) credentialBody.encryptedData = encryptedData } ``` Inside `transformToCredentialEntity`. In this case, plainDataObj...