We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Large inputs breaks formatting +2K lines. Scrolling also gets weird for 30K+ lines
Make a massive input object
@track def test(x): pass test([{"foo":"bar" for x in range(10000)}])
None
*** HEALTHCHECK STARTED *** Python version: 3.11.9 Opik version: 1.7.2 # ONLY FOR CLI not same
*** CONFIGURATION FILE *** Config file path: /Users/gustavhartz/.opik.config Config file exists: yes
*** CURRENT CONFIGURATION *** ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Setting ┃ Value ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ │ api_key │ None │ │ background_workers │ 4 │ │ check_tls_certificate │ True │ │ console_logging_level │ INFO │ │ default_flush_timeout │ None │ │ enable_litellm_models_monitoring │ True │ │ file_logging_level │ None │ │ logging_file │ opik.log │ │ project_name │ Default Project │ │ pytest_experiment_enabled │ True │ │ sentry_enable │ True │ │ track_disable │ False │ │ url_override │ http://localhost:5173/api/ │ │ workspace │ default │ └──────────────────────────────────┴────────────────────────────┘
*** CONFIGURATION SCAN *** Configuration issues: not found
*** BACKEND WORKSPACE AVAILABILITY *** --> Checking backend workspace availability at: http://localhost:5173/api/ Backend workspace available: yes
*** HEALTHCHECK COMPLETED ***
The text was updated successfully, but these errors were encountered:
Hey @gustavhartz, thank you for reporting the issue. Unfortunately, I cannot reproduce it with the code snippet you shared.
` from opik import track @track def test(x): pass
test([{"foo":"bar" for x in range(10000)}]) `
I have also tried to reproduce it with next code: ` from opik import track
@track def test(x): pass
test([{x: x**2 for x in range(10000)}]) ` And it works as expected:
Can you please share the working code to reproduce it?
Sorry, something went wrong.
@gustavhartz, we were able to reproduce the issue with the next script:
test([{"foo":"bar"} for x in range(30000)]) `
We will take a look at it. Thanks again for reporting it.
aadereiko
No branches or pull requests
What component(s) are affected?
Opik version
Describe the problem
Large inputs breaks formatting +2K lines. Scrolling also gets weird for 30K+ lines
Reproduction steps and code snippets
Make a massive input object
Error logs or stack trace
None
Healthcheck results
*** HEALTHCHECK STARTED ***
Python version: 3.11.9
Opik version: 1.7.2 # ONLY FOR CLI not same
*** CONFIGURATION FILE ***
Config file path: /Users/gustavhartz/.opik.config
Config file exists: yes
*** CURRENT CONFIGURATION ***
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Setting ┃ Value ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ api_key │ None │
│ background_workers │ 4 │
│ check_tls_certificate │ True │
│ console_logging_level │ INFO │
│ default_flush_timeout │ None │
│ enable_litellm_models_monitoring │ True │
│ file_logging_level │ None │
│ logging_file │ opik.log │
│ project_name │ Default Project │
│ pytest_experiment_enabled │ True │
│ sentry_enable │ True │
│ track_disable │ False │
│ url_override │ http://localhost:5173/api/ │
│ workspace │ default │
└──────────────────────────────────┴────────────────────────────┘
*** CONFIGURATION SCAN ***
Configuration issues: not found
*** BACKEND WORKSPACE AVAILABILITY ***
--> Checking backend workspace availability at: http://localhost:5173/api/
Backend workspace available: yes
*** HEALTHCHECK COMPLETED ***
The text was updated successfully, but these errors were encountered: