mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00
- Update default model to meta-llama/llama-4-scout-17b-16e-instruct
in ClientChatStore
- Revise deployment steps and docs for `GROQ_API_KEY` - Enable `workers_dev` in `wrangler.jsonc` - Adjust hero label to `open-gsio` in routes - Update `.gitignore` to include sensitive config files - Add `deploy:secrets` script in `package.json`
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
// Top level control interface for navigation
|
||||
export default {
|
||||
"/": { sidebarLabel: "Home", heroLabel: "g.s" },
|
||||
"/": { sidebarLabel: "Home", heroLabel: "open-gsio" },
|
||||
// "/about": { sidebarLabel: "About", heroLabel: "About Me" },
|
||||
// "/resume": { sidebarLabel: "Resume", heroLabel: "resume" },
|
||||
// "/demo": { sidebarLabel: "Demo", heroLabel: "Demos" },
|
||||
|
@@ -7,7 +7,7 @@ const ClientChatStore = types
|
||||
messages: types.optional(types.array(Message), []),
|
||||
input: types.optional(types.string, ""),
|
||||
isLoading: types.optional(types.boolean, false),
|
||||
model: types.optional(types.string, "llama-3.3-70b-versatile"),
|
||||
model: types.optional(types.string, "meta-llama/llama-4-scout-17b-16e-instruct"),
|
||||
imageModel: types.optional(types.string, "black-forest-labs/flux-1.1-pro"),
|
||||
})
|
||||
.actions((self) => ({
|
||||
|
Reference in New Issue
Block a user