Aliaksandr Kuzmik
Aliaksandr Kuzmik
Hi @ryanli-me , try setting environment variable `OPIK_CONSOLE_LOGGING_LEVEL=WARNING` before importing Opik. (same principle with adding OPIK_ prefix will work for any other config value as well)
@jverre I like this idea. However, we need to decide how enable/disable it. We'll likely need to have some flags to disable/enable opik tracking for `score` functions
Hi @dannysheridan! Sorry, I missed your message. We are using a workaround at the moment, a bit dirty because of double private attribute access, but it works. ```python rest_client =...
@dannysheridan FYI this issue became a more serious problem after we needed to configure different timeouts for connection, read and write operations.
@dannysheridan UPD. the new workaround which allows using configured timeouts from your HTTPX client directly: ```python rest_client = rest_api_client.OpikApi( # OpikApi is a Fern class base_url=base_url, httpx_client=httpx_client_, ) rest_client._client_wrapper._timeout =...
Hi @rohithmsr! You can ignore library integration tests and run only unit tests and e2e tests (you'll find the corresponding folders inside `sdks/python/tests/`). It's because library integration tests require additional...
Hi @lryan599! Thanks for the feedback. Your request looks very valid, we'll need to discuss with the team how exactly to address that. Maybe we'll be able to add more...
Should be fixed [here](https://github.com/comet-ml/opik/pull/2120)
@mbertani tokens and cost should be available for Google gemini models, but we haven't tested it for litellm yet. The PR is released btw. We are prioritizing the improvements of...
@mbertani thanks for the script! It's very valuable because agentic applications vary a lot :) We'll look into it tomorrow. (Would be nice in terms of tracking if you opened...