Kevin Scott

Results 3 comments of 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.