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
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ starlette = { version = ">=0.27.0", optional = true }
backoff = "^2.2.1"
crewai = { version = ">=0.152.0,<2.0.0", optional = true, python = ">=3.10,<3.14" }
tqdm = { version = ">=4.0.0" }
typing-extensions = { version = ">=4.5.0" }
opentelemetry-sdk = { version = "^1.38.0", optional = true }
opentelemetry-api = { version = "^1.38.0", optional = true }
opentelemetry-exporter-otlp = { version = "^1.38.0", optional = true }
Expand Down Expand Up @@ -238,6 +239,7 @@ ignore = [
"src/galileo/utils/datasets.py" = ["PLC0415"]
"src/galileo/utils/serialization.py" = ["PLC0415"] # Optional dependency conditional imports
"src/galileo/handlers/crewai/handler.py" = ["PLC0415"] # Version-specific conditional imports
"src/galileo/project.py" = ["PLC0415"] # Bottom-of-file circular import avoidance

[tool.ruff.lint.isort]
known-first-party = ["galileo_core"]
Expand Down
12 changes: 7 additions & 5 deletions src/galileo/__future__/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,28 @@
This package provides the next-generation object-centric API for Galileo.
"""

from galileo.__future__.collaborator import Collaborator, CollaboratorRole
from __future__ import annotations

from galileo.__future__.configuration import Configuration
from galileo.__future__.dataset import Dataset
from galileo.__future__.experiment import Experiment
from galileo.__future__.integration import Integration
from galileo.__future__.log_stream import LogStream
from galileo.__future__.metric import CodeMetric, GalileoMetric, LlmMetric, LocalMetric, Metric
from galileo.__future__.model import Model
from galileo.__future__.project import Project
from galileo.__future__.prompt import Prompt
from galileo.__future__.shared.exceptions import (
from galileo.collaborator import Collaborator, CollaboratorRole
from galileo.project import Project
from galileo.schema.message import Message
from galileo.search import RecordType
from galileo.shared.exceptions import (
APIError,
ConfigurationError,
GalileoFutureError,
ResourceConflictError,
ResourceNotFoundError,
ValidationError,
)
from galileo.schema.message import Message
from galileo.search import RecordType
from galileo.utils.log_config import enable_console_logging
from galileo_core.schemas.logging.llm import MessageRole
from galileo_core.schemas.logging.step import StepType
Expand Down
Loading
Loading