Skip to content

Commit

Permalink
fix: map to default project when not mapped (#13)
Browse files Browse the repository at this point in the history
* fix: map to default project when not mapped

* fix: map to default project when not mapped
  • Loading branch information
SHARANTANGEDA committed Oct 6, 2023
1 parent e5e9eca commit dc79480
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def read_requirements(file_name):

setup(
name='xpuls-mlmonitor',
version='0.1.0',
version='0.1.1',
author='Sai Sharan Tangeda',
author_email='saisarantangeda@gmail.com',
description='Automated telemetry and monitoring for ML & LLM Frameworks',
Expand Down
2 changes: 1 addition & 1 deletion xpuls/mlmonitor/langchain/patches/patch_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def _apply_patch(kwargs):
try:
project_details = MapXpulsProject._context.get()
if project_details is None:
project_details = {}
project_details = {'project_id': 'default'}
except Exception as e:
project_details = {'project_id': 'default'}

Expand Down

0 comments on commit dc79480

Please sign in to comment.