Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Commit 0d8344d

Browse files
committed
update error message and changelog
1 parent d42d098 commit 0d8344d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
# Change Log
44

5-
## 2025-03-29 - Runtime 0.17.8
5+
## 2025-04-01 - Runtime 0.17.8
6+
7+
- fix: Update Hypermode api key reading for modus local dev [#805](https://github.com/hypermodeinc/modus/pull/805)
8+
9+
## 2025-04-01 - CLI 0.17.8
610

711
- fix: Update Hypermode api key reading for modus local dev [#805](https://github.com/hypermodeinc/modus/pull/805)
812

runtime/models/models.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ func PostToModelEndpoint[TResult any](ctx context.Context, model *manifest.Model
9999
return empty, fmt.Errorf("model %s is not available in the local dev environment", model.SourceModel)
100100
}
101101
case http.StatusUnauthorized:
102-
return empty, fmt.Errorf("invalid or expired API key")
102+
return empty, fmt.Errorf("invalid or expired API key. Please use `hyp login` to create a new API key")
103103
case http.StatusForbidden:
104104
return empty, fmt.Errorf("API key is disabled or usage limit exceeded")
105105
case http.StatusTooManyRequests:

0 commit comments

Comments
 (0)