Alexander Comerford

Results 4 comments of Alexander Comerford

I just used ``` // @ts-ignore import { AwesomeButton } from 'react-awesome-button' ``` and ``` ... "rules": { "@typescript-eslint/ban-ts-ignore": "off" } ... ``` in my eslint to get around this

So this isn't a direct solution but maybe a step forward. Since magics are usually applied at the "cell" level it might be worth considering importing "cells" instead of just...

I had this same issue but here is how I resolved it. First I added a few project command like so in my `apps/app` directory (which is a nextjs project)....

This is a quick hack to get around this. `test.py` ```python from typing import Any, Optional from langchain.chat_models import ChatOpenAI class WrappedChatOpenAI(ChatOpenAI): client: Optional[Any] = None print(WrappedChatOpenAI().predict(text="Hello!")) ``` and I...