Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions examples/shadcn-chat/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
THESYS_API_KEY=your_api_key_here
DEMO_USER_ID=demo-user
# OPENUI_MODEL=anthropic/claude-sonnet-4.6
2 changes: 1 addition & 1 deletion examples/shadcn-chat/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";
import "./.next/dev/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
9 changes: 6 additions & 3 deletions examples/shadcn-chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
"version": "0.1.0",
"private": true,
"scripts": {
"generate:prompt": "node --import tsx/esm scripts/generate-prompt.mjs",
"dev": "pnpm generate:prompt && next dev",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
"lint": "eslint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@openuidev/thesys": "latest",
"@openuidev/thesys-server": "latest",
"@openuidev/lang-core": "workspace:*",
"@openuidev/react-headless": "workspace:*",
"@openuidev/react-lang": "workspace:*",
"@openuidev/react-ui": "workspace:*",
Expand Down
Loading
Loading