Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
simplify wyvern import - move top priority import to wyvern/__init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
wintonzheng committed Aug 24, 2023
1 parent 327c1e6 commit 168e6b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wyvern-ai"
version = "0.0.10"
version = "0.0.11"
description = ""
authors = ["Wyvern AI <info@wyvern.ai>"]
readme = "README.md"
Expand Down
6 changes: 6 additions & 0 deletions wyvern/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# -*- coding: utf-8 -*-
from wyvern.components.pipeline_component import PipelineComponent
from wyvern.wyvern_logging import setup_logging
from wyvern.wyvern_tracing import setup_tracing

setup_logging()
setup_tracing()


__all__ = [
"PipelineComponent",
]

0 comments on commit 168e6b7

Please sign in to comment.