Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions guides/vlm_tracing/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.venv/
uv.lock
.ipynb_checkpoints/
Empty file added guides/vlm_tracing/README.md
Empty file.
26 changes: 26 additions & 0 deletions guides/vlm_tracing/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[project]
name = "vlm-tracing"
version = "0.1.0"
description = "Trace VLM (image + text) inference in Opik, with a focus on visualizing image inputs alongside text outputs in the trace view."
readme = "README.md"
requires-python = ">=3.12,<3.14"
dependencies = [
"opik>=2.0.74",
"litellm",
]

[dependency-groups]
dev = ["ruff"]

# WHY: notebook-only example — uv manages the env, no installable package.
[tool.uv]
package = false

[tool.ruff]
line-length = 110
target-version = "py312"
# WHY: ruff can't parse the notebook's cell schema; lint .py files only.
extend-exclude = ["*.ipynb"]

[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
Empty file.