Kevin Scott
Kevin Scott
Just hit this myself. [I copied the command from here](https://modern-web.dev/guides/test-runner/typescript/): ```concurrently --kill-others --names tsc,wtr \"npm run tsc:watch\" \"wtr --watch\"``` into an `npm` script and got: ``` [wtr] Error while running...
Seeing this too. Version `0.0.102`. Code: ``` from langchain.document_loaders import TextLoader from langchain.embeddings import TensorflowHubEmbeddings loader = TextLoader('./state_of_the_union.txt') documents = loader.load() text_splitter = CharacterTextSplitter(chunk_size=1000, chunk_overlap=0) texts = text_splitter.split_documents(documents) embeddings =...
As a workaround, this seems to work: ``` from langchain.vectorstores.chroma import Chroma ``` Not sure why `__init__` is not exposing `Chroma`, as it appears to be imported correctly.
Understood. Are there drawbacks to omitting the types in order to leverage dependency injection from `FastDepends`? i.e.: ``` @inject async def foo( config = Depends(get_config), ): ``` We have a...
Click to show javascript error. Failed to load model class 'DataGridModel' from module 'ipydatagrid'
Also seeing similar: ``` [Open Browser Console for more detailed log - Double click to close this message] Failed to load model class 'DataGridModel' from module 'ipydatagrid' Error: No version...