Fabian Meyer

Results 12 comments of Fabian Meyer

@MaartenGr thanks for your answer. Here is the full code and the stack trace: ` import os import sys sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))) from bertopic import BERTopic from sentence_transformers import SentenceTransformer from...

Sadly this problem even exists when using the web GUI version, [Dream Studio by Stability AI](https://beta.dreamstudio.ai), where you have to pay for your credits. They offer resolution up to 1024p...

@shessenauer Having the exact same problem! Here's my stacktrace: ` > Entering new chain... I need to find information about electric vehicles Action: Findall QA with Sources System Action Input:...

@mikexd-dev @skeretna No I was not able to solve the problem. However I decided to add a UI element to select the model/tool and "hardcode" it rather than using an...

> Is this only a problem with this model? @praneetreddy017 No it's the exact same problem with all open-source models I have tested so far. To be precise: Everything works...

I want to connect to a given Milvus DB without having to add `'texts'` and `'embedding'` again. This makes no sense. ` from_texts() missing 2 required positional arguments: 'texts' and...

@martinholecekmax Thanks for the reply. Isn't it possible to connect to an existing Milvus DB without having to provide an embedding function?

@martinholecekmax thanks for clarifying. I could get it to run on my local machine. Thanks!

@junxi-liu is it possible to install an older version from source? like `python -m pip install 'git+https://github.com/facebookresearch/detectron2.git'` but with version 0.5 instead of the latest version? Else it doesn't match...

I could successfullly run an open source model with LangChain for document retrieval. ``` # Embeddings: # split texts text_splitter = CharacterTextSplitter(chunk_size=1000, chunk_overlap=100) texts = text_splitter.split_text(text) # using Sentence Transformers...