- Notifications
You must be signed in to change notification settings - Fork1.1k
feat: add AI Bridge request logs model filter#21340
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Changes from1 commit
417aac70eeb490efbf1782a85911803ea8eac38fc6e6b20c70186385b9121731399a6c63dd6925254cf512a013ed2050bcedbe5c8c5446712e307e5887c1d117504662db553a1399fea772a703a85868620dc29b975106c4df901702cbcd4ff120fe9dd08eb366cca9be933cefb141673ea068f175261d379b418File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
ExperimentalHandler (#21278)Addressing feedback found in#21252> [!IMPORTANT]> This pull-request removes endpoints from `ExperimentalHandler` from`coderd.go` and promotes the endpoints within the frontend. This meansthat we will no longer be serving AI Bridge under the`/api/experimental/` prefix now that things reached release in[`v2.29.0`](https://github.com/coder/coder/releases/tag/v2.29.0).>> ### Migration >> The `/api/experimental/aibridge` prefix has been removed. Any clients,scripts, or integrations that previously called AI Bridge endpointsunder `/api/experimental/aibridge` must be updated to use the`/api/v2/aibridge` stable API routes introduced in v2.29.0.| Position | Pull-request || -------- | ------------ || | [fix: improve AI Bridge request logsUI/UX](#21252) || | [feat: add AI Bridge request logs modelfilter](#21259) || ✅ | [fix: promote AIBridge from`ExperimentalHandler`](#21278) |---------Co-authored-by: Susana Ferreira <susana@coder.com>
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -226,10 +226,8 @@ func New(ctx context.Context, options *Options) (_ *API, err error) { | ||
| return api.refreshEntitlements(ctx) | ||
| } | ||
| api.AGPL.ExperimentalHandler.Group(func(_ chi.Router) { | ||
| // Add enterprise-only experimental routes here | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I don't like removing experimental paths here. It should be separate issue / PR. | ||
| }) | ||
| api.AGPL.APIHandler.Group(func(r chi.Router) { | ||
Uh oh!
There was an error while loading.Please reload this page.