Skip to content

Commit 051cdfc

Browse files
committed
fix: switch to morph-v3-fast (morph-v2 deprecated)
1 parent 2db544f commit 051cdfc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

gptme/tools/morph.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,9 @@ def execute_morph(
142142

143143
# Call Morph via OpenRouter
144144
try:
145-
# Use the openrouter/morph/morph-v2 model
146-
response = _chat_complete(messages, "openrouter/morph/morph-v2", tools=None)
145+
response = _chat_complete(
146+
messages, "openrouter/morph/morph-v3-fast", tools=None
147+
)
147148
except Exception as e:
148149
yield Message("system", f"Error: failed Morph API call: {str(e)}")
149150
return

0 commit comments

Comments
 (0)