Hoong Tee, Yeoh

Results 29 comments of Hoong Tee, Yeoh

hi @PavloFesenko , yes i tried python3.10 alpine image it works. Just that it consume long build time. And our thought is that whether there's a way not to downgrade...

now even with python3.10 alpine it doesnt work. It was still working fine last week... Not sure any new stuff added in the background which introduces new failures. tmp/pip-install-tltrnbg7/opencv-python_218517a01db34d7aa0d9c09d5f167498/_skbuild/linux-x86_64-3.10/cmake-build/3rdparty/ade/ade-0.1.1f/sources/ade/include/ade/typed_graph.hpp:22:1: note:...

@andoni-na-bai for this i have a workaround by downgrading the base image to python3.10-alpine_3.18 version. Reason downgrading to 3.10_alpine as 3.11 doesnt support the required numpy version.

Is it something newly added in the ade source that cause something broken? tmp/pip-install-tltrnbg7/opencv-python_218517a01db34d7aa0d9c09d5f167498/_skbuild/linux-x86_64-3.10/cmake-build/3rdparty/ade/ade-0.1.1f/sources/ade/include/ade/typed_graph.hpp:22:1: note: 'std::uintptr_t' is defined in header ''; did you forget to '#include '? 412.4 21 |...

Hi @asmorkalov, I'm working with docker images where i used to install unstructured[pdf] where underlying will compile opencv-python wheel. I think with pip backtracking runtime feature (INFO: pip is looking...

@opencv-alalek erm this one i tried in python 3.11-alpine based image.. it failed because of imcompatible of alpine version. Hence i tried to downgrade to python3.10-alpine image. Then it was...

> Seems to be related to the pip version, if you install from source it works. Thanks @AugustDS for your response. Means that i cannot direct pip install ragas? I...

RUN cd /usr/local/lib/python3.10/site-packages/ && git clone https://github.com/explodinggradients/ragas && cd ragas && pip install -e . but when i start it complain from ragas.llms import LangchainLLM ragas | ImportError: cannot import...

Ok my mistakes. I tried to recompile with v0.0.22 tag yet the issue still occur: ERROR: OpenAI API key not found! Seems like your trying to use Ragas metrics with...

From https://docs.ragas.io/en/v0.0.22/howtos/customisations/azure-openai.html, I observed following: # init and change the embeddings # only for answer_relevancy azure_embeddings = AzureOpenAIEmbeddings( deployment="your-embeddings-deployment-name", model="your-embeddings-model-name", openai_api_base="https://your-endpoint.openai.azure.com/", openai_api_type="azure", ) # embeddings can be used as it...