Skip to content
Merged
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
4 changes: 0 additions & 4 deletions agentops/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
from typing import Dict, List, Optional, Union, Any

from dotenv import load_dotenv

from .client import Client
from .sdk.commands import record as sdk_record, start_span as sdk_start_span, end_span as sdk_end_span
from .semconv.span_kinds import SpanKind
import agentops.legacy as legacy

load_dotenv()

# Client global instance; one per process runtime
_client = Client()

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "agentops"
version = "0.4.0"
version = "0.4.1"
authors = [
{ name="Alex Reibman", email="[email protected]" },
{ name="Shawn Qiu", email="[email protected]" },
Expand Down
Loading