Skip to content

Commit

Permalink
Merge pull request TransformerOptimus#528 from TransformerOptimus/pro…
Browse files Browse the repository at this point in the history
…d-marketplace-fix

Updated Marketplace URL
  • Loading branch information
I’m authored Jun 27, 2023
2 parents bb32352 + 99b017f commit 1644b24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions superagi/models/toolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from superagi.models.base_model import DBBaseModel


# marketplace_url = "https://app.superagi.com/api"
marketplace_url = "http://localhost:8001"
marketplace_url = "https://app.superagi.com/api"
# marketplace_url = "http://localhost:8001"


class Toolkit(DBBaseModel):
Expand Down
3 changes: 2 additions & 1 deletion tests/unit_tests/models/test_toolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
def mock_session():
return MagicMock()

marketplace_url = "http://localhost:8001"
# marketplace_url = "http://localhost:8001"
marketplace_url = "https://app.superagi.com/api"


def test_add_or_update_existing_toolkit(mock_session):
Expand Down

0 comments on commit 1644b24

Please sign in to comment.