File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ export const providerConfigs = {
121121 displayName : "OpenAI" ,
122122 /** https://platform.openai.com/docs/models */
123123 models : [
124+ { id : "gpt-5.1" , displayName : "gpt-5.1" } ,
124125 { id : "gpt-5" , displayName : "gpt-5" } ,
125126 { id : "gpt-5-mini" , displayName : "gpt-5-mini" } ,
126127 { id : "gpt-5-nano" , displayName : "gpt-5-nano" } ,
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import json from "highlight.js/lib/languages/json";
2727import sql from "highlight.js/lib/languages/sql" ;
2828import "@beekeeperstudio/plugin/dist/eventForwarder" ;
2929import { createAppEvent } from "@/plugins/appEvent" ;
30- import { VueKeyboardTrapDirectivePlugin } from ' @pdanpdan/vue-keyboard-trap' ;
30+ import { VueKeyboardTrapDirectivePlugin } from " @pdanpdan/vue-keyboard-trap" ;
3131
3232setDebugComms ( false ) ;
3333
@@ -56,6 +56,14 @@ addNotificationListener("themeChanged", (args) => {
5656 `:root { ${ args . cssString } }` ;
5757} ) ;
5858
59+ if ( import . meta. env . MODE === "development" ) {
60+ document . addEventListener ( "keydown" , ( e ) => {
61+ if ( e . ctrlKey && e . key === "r" ) {
62+ window . location . reload ( ) ;
63+ }
64+ } ) ;
65+ }
66+
5967// Create and mount the Vue app
6068const app = createApp ( App ) ;
6169const pinia = createPinia ( ) ;
You can’t perform that action at this time.
0 commit comments