Lal Zada
Lal Zada
i am getting this same issue in a fresh django project ``` python = 3.10 Django = 4.0.5 psycopg2 = 2.9.3 django-hordak = 1.10.2 postgres (PostgreSQL) 14.2 (Debian 14.2-1.pgdg110+1) ```
Adding a new migration fixed it for me. By replacing `IF NEW.parent_id::BOOL THEN` with `IF NEW.parent_id::INT::BOOL THEN` ``` from django.db import migrations class Migration(migrations.Migration): dependencies = [("hordak", "0029_alter_leg_amount_currency_and_more")] operations =...
for anyone who may wants to use [react-native-fetch-blob](https://github.com/wkh237/react-native-fetch-blob) with [expo](https://expo.io). expo is not compatible with any other package which requires `react-native link` command. there is a way discussed in expo...
``` addKeys={[9, 13, 188, 186]} ``` This worked for me on `Tab`, `Enter` and `Comma`
same situation when updating existing phone number. Input show default country code while phone number as different country dial up code.
Thanks @jnazander ....That did the magic....
> This is how I do it with OpenAI Assistant API > > ```python > @cl.on_message > async def message(message_from_ui: cl.Message): > assistant: Assistant = cl.user_session.get("assistant") > thread: Thread =...
> DB is just what I rename the SQLAlchemyDataLayer instance for brevity. oh got it. So you are using SQLAlchemy as a persistent store. I am using **LiteralAI** and i...