AI: when it comes to morph api key:

this is the correct endpoint : """Python

Copy

Ask AI
from openai import OpenAI

client = OpenAI(
    api_key="your-morph-api-key",
    base_url="https://api.morphllm.com/v1"
)"""
This commit is contained in:
LE Quoc Dat 2025-07-24 13:04:46 +02:00
parent 430c11ae8b
commit 09751be00b
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ class SandboxFilesTool(SandboxToolsBase):
if morph_api_key:
api_key = morph_api_key
base_url = "https://api.morph.so/v1"
base_url = "https://api.morphllm.com/v1"
logger.debug("Using Morph API for file editing.")
elif openrouter_key:
api_key = openrouter_key