Skip to content
Merged
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
6 changes: 1 addition & 5 deletions .github/workflows/build-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,9 @@ jobs:
git submodule sync --recursive
git submodule update --init --recursive
git submodule status --recursive
- name: Install genui-sdk deps
run: |
cd genui-sdk && pnpm install
- name: Build genui-sdk homepage
run: |
cd genui-sdk
pnpm build:homepage
pnpm build:genui-sdk
- name: Install deps
run: pnpm -F opentiny-design-common i --no-frozen-lockfile
- name: Build common
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/build-home.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,9 @@ jobs:
git submodule sync --recursive
git submodule update --init --recursive
git submodule status --recursive
- name: Install genui-sdk deps
run: |
cd genui-sdk && pnpm install
- name: Build genui-sdk homepage
run: |
cd genui-sdk
pnpm build:homepage
pnpm build:genui-sdk
- name: Install deps
run: pnpm -F opentiny-design-home i --no-frozen-lockfile
- name: Build home
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/deploy-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,9 @@ jobs:
git submodule sync --recursive
git submodule update --init --recursive
git submodule status --recursive
- name: Install genui-sdk deps
run: |
cd genui-sdk && pnpm install
- name: Build genui-sdk homepage
run: |
cd genui-sdk
pnpm build:homepage
pnpm build:genui-sdk
env:
VITE_GENUI_DOC_DOMAIN: https://opentiny.github.io/docs
VITE_GENUI_PLAYGROUND_HREF: https://agent-alpha.opentiny.design/genui-sdk-playground
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/deploy-obs-tech-college.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,9 @@ jobs:
git submodule sync --recursive
git submodule update --init --recursive
git submodule status --recursive
- name: Install genui-sdk deps
run: |
cd genui-sdk && pnpm install
- name: Build genui-sdk homepage
run: |
cd genui-sdk
pnpm build:homepage
pnpm build:genui-sdk
- name: Install deps
run: |
pnpm -F opentiny-tech-college i --no-frozen-lockfile
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/deploy-obs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,9 @@ jobs:
git submodule sync --recursive
git submodule update --init --recursive
git submodule status --recursive
- name: Install genui-sdk deps
run: |
cd genui-sdk && pnpm install
- name: Build genui-sdk homepage
run: |
cd genui-sdk
pnpm build:homepage
pnpm build:genui-sdk
- name: Install deps
run: |
pnpm -F opentiny-design-common i --no-frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion genui-sdk
Submodule genui-sdk updated 30 files
+2 −4 .github/workflows/deploy-obs-playground.yml
+0 −2 .github/workflows/publish-angular.yml
+106 −0 .github/workflows/publish-packages.yml
+0 −2 .github/workflows/publish-server.yml
+0 −2 .github/workflows/publish-vue.yml
+1 −1 package.json
+1 −0 packages/core/src/stream-pattern-extractor/__tests__/utils/merge-stream.ts
+4 −2 packages/frameworks/angular/package.json
+6 −0 packages/frameworks/angular/projects/renderer/src/env.d.ts
+3 −4 packages/frameworks/angular/projects/renderer/src/lib/genui-renderer.ts
+3 −2 packages/frameworks/vue/src/chat/GenuiChat.vue
+5 −5 packages/frameworks/vue/src/chat/renderer/ReasoningRenderer.vue
+1 −1 packages/frameworks/vue/src/chat/renderer/TemplateDataRenderer.vue
+17 −8 pnpm-lock.yaml
+1 −0 sites/playground/web/package.json
+109 −232 sites/playground/web/src/App.vue
+1 −0 sites/playground/web/src/assets/images/menu.svg
+20 −5 sites/playground/web/src/components/AssistantFooter.vue
+6 −3 sites/playground/web/src/components/FinishInfo.vue
+474 −0 sites/playground/web/src/components/PlaygroundSidebar.vue
+12 −3 sites/playground/web/src/components/UserFooter.vue
+1 −1 sites/playground/web/src/components/genui-template/GenuiTemplate.vue
+56 −37 sites/playground/web/src/components/tab-components/ModelConfig.vue
+17 −12 sites/playground/web/src/components/tab-components/SelectTemplateDialog.vue
+9 −21 sites/playground/web/src/components/tab-components/mcpTools.vue
+17 −0 sites/playground/web/src/components/v-focus-hover-sync.ts
+2 −0 sites/playground/web/src/hooks/index.ts
+11 −7 sites/playground/web/src/hooks/use-input-message.ts
+22 −0 sites/playground/web/src/hooks/use-mobile.ts
+1 −0 sites/playground/web/src/style.css
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"build:common": "pnpm -F opentiny-design-common build:open",
"build": "pnpm -F opentiny-design-home build",
"build:engine": "pnpm -F tiny-engine-portal build:open",
"build:genui-sdk": "cd genui-sdk && pnpm install && pnpm build:homepage"
"build:genui-sdk": "cd genui-sdk && pnpm install --no-frozen-lockfile && pnpm build:homepage"
}
}
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading