WonJung Kim

Results 18 comments of WonJung Kim

I made simple code to reproduce the issue ```py # pip install "ddtrace>=2.12.0" celery[redis,gevent] python-dotenv tqdm from dotenv import load_dotenv load_dotenv() from celery import Celery, signature, group from ddtrace import...

Hi, I tried warp the llmobs flush like: ```py def llmTask(input_idx): result = _llmTask(input_idx) LLMObs.flush() # force flushes all finished spans to dd return result ``` But as soon as...

We have indeed switched to Celery’s hard time limit(`time_limit=15`) to ensure a definite timeout, and it has resolved the primary issue. However, there's a minor issue: occasionally, it causes a...

Seems like uv w/ rye somehow ignores current Python version and installs other python version's wheel. Which Pip doesn't Getting similar issue on other project on `0.37.0` :( ![image](https://github.com/user-attachments/assets/1a14b132-a61d-4d2a-a557-5eb46f73680a)

No. It’s x64 machines. And it downloads cp312 version of numpy when I set .python-version to 3.11.9. Also Pip doesn’t (follows current env) but uv does this… I think there’s...

Clear the cache works like a charm. but it increases initialize speed... Btw, I can reproduce more easily. 1. initially set `python-version` to `3.12.3` (and `uv cache clean` for just...

Thanks for the response! I also added information about the Retriever (Vectorstore) span, as we discovered that adding a span to the retriever is not straightforward (we had to 'patch'...