Skip to content

Commit

Permalink
downgrade packaging for langchain support (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
bboynton97 authored Apr 11, 2024
1 parent dd6668c commit b8fccc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion agentops/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def end_session(self,
self._session.video = video
self._session.end_session(end_state, end_state_reason)
token_cost = self._worker.end_session(self._session)
if token_cost is 'unknown':
if token_cost == 'unknown':
print('🖇 AgentOps: Could not determine cost of run.')
else:
print('🖇 AgentOps: This run cost ${:.6f}'.format(float(token_cost)))
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "agentops"
version = "0.1.3"
version = "0.1.4"
authors = [
{ name="Alex Reibman", email="[email protected]" },
{ name="Shawn Qiu", email="[email protected]" },
Expand All @@ -22,7 +22,7 @@ classifiers = [
dependencies = [
"requests==2.31.0",
"psutil==5.9.8",
"packaging==24.0"
"packaging==23.2"
]
[project.optional-dependencies]
dev = [
Expand Down

0 comments on commit b8fccc9

Please sign in to comment.