Skip to content

Commit

Permalink
Switch to prod tool endpoint (#179)
Browse files Browse the repository at this point in the history
* Switch to prod tool endpoint

Switch the tool endpoint to the production endpoint

* Update type_defs.py
  • Loading branch information
humpydonkey authored Jul 27, 2024
1 parent 861e564 commit 609b71f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vision_agent/tools/tool_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

_LOGGER = logging.getLogger(__name__)
_LND_API_KEY = LandingaiAPIKey().api_key
_LND_API_URL = "https://api.staging.landing.ai/v1/agent"
_LND_API_URL = "https://api.landing.ai/v1/agent"


class ToolCallTrace(BaseModel):
Expand Down
2 changes: 1 addition & 1 deletion vision_agent/utils/type_defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class LandingaiAPIKey(BaseSettings):
"""

api_key: str = Field(
default="land_sk_IJrojHarPXRjqDj1Fng76mX7yCbzVm1s5rZYxaNXu5v0cNLn0w",
default="land_sk_fnmSzD0ksknSfvhyD8UGu9R4ss3bKfLL1Im5gb6tDQTy2z1Oy5",
alias="LANDINGAI_API_KEY",
description="The API key of LandingAI.",
)
Expand Down

0 comments on commit 609b71f

Please sign in to comment.