Skip to content

Commit

Permalink
feat: point fine-tuning url to prod by default (#220)
Browse files Browse the repository at this point in the history
point to prod
  • Loading branch information
Dayof authored Sep 4, 2024
1 parent ad9cf58 commit 0626e8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision_agent/clients/landing_public_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class LandingPublicAPI(BaseHTTP):
def __init__(self) -> None:
landing_url = os.environ.get("LANDINGAI_URL", "https://api.dev.landing.ai")
landing_url = os.environ.get("LANDINGAI_URL", "https://api.landing.ai")
landing_api_key = os.environ.get("LANDINGAI_API_KEY", LandingaiAPIKey().api_key)
headers = {"Content-Type": "application/json", "apikey": landing_api_key}
super().__init__(base_endpoint=landing_url, headers=headers)
Expand Down

0 comments on commit 0626e8e

Please sign in to comment.