Skip to content

Commit bf2932c

Browse files
Merge pull request #92 from volcengine/yinchengfeng-bytedance-patch-2
fix(arkitect): Update license_check.yaml
2 parents fe8b46d + cd008db commit bf2932c

File tree

28 files changed

+304
-1
lines changed

28 files changed

+304
-1
lines changed

.github/workflows/license_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Apply Changes
2626
uses: EndBug/add-and-commit@v4
2727
env:
28-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
with:
3030
author_name: License Bot
3131
author_email: [email protected]

demohouse/teacher_avatar/.eslintrc.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
/*
2+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
3+
* Licensed under the 【火山方舟】原型应用软件自用许可协议
4+
* you may not use this file except in compliance with the License.
5+
* You may obtain a copy of the License at
6+
* https://www.volcengine.com/docs/82379/1433703
7+
* Unless required by applicable law or agreed to in writing, software
8+
* distributed under the License is distributed on an "AS IS" BASIS,
9+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
* See the License for the specific language governing permissions and
11+
* limitations under the License.
12+
*/
13+
114
module.exports = {
215
root: true,
316
extends: ['@byted/eslint-config-eden/react-ts'],

demohouse/teacher_avatar/.prettierrc.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
/*
2+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
3+
* Licensed under the 【火山方舟】原型应用软件自用许可协议
4+
* you may not use this file except in compliance with the License.
5+
* You may obtain a copy of the License at
6+
* https://www.volcengine.com/docs/82379/1433703
7+
* Unless required by applicable law or agreed to in writing, software
8+
* distributed under the License is distributed on an "AS IS" BASIS,
9+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
* See the License for the specific language governing permissions and
11+
* limitations under the License.
12+
*/
13+
114
// 配置可参考 https://prettier.io/en/configuration.html
215
module.exports = {
316
// 使用较大的打印宽度,因为 Prettier 的换行设置似乎是针对没有注释的 JavaScript.

demohouse/teacher_avatar/applet.config.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
2+
// Licensed under the 【火山方舟】原型应用软件自用许可协议
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
// https://www.volcengine.com/docs/82379/1433703
6+
// Unless required by applicable law or agreed to in writing, software
7+
// distributed under the License is distributed on an "AS IS" BASIS,
8+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
// See the License for the specific language governing permissions and
10+
// limitations under the License.
11+
112
import { defineConfig } from '@ai-app/kit';
213

314
export default defineConfig({

demohouse/teacher_avatar/src/agent/index.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
2+
// Licensed under the 【火山方舟】原型应用软件自用许可协议
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
// https://www.volcengine.com/docs/82379/1433703
6+
// Unless required by applicable law or agreed to in writing, software
7+
// distributed under the License is distributed on an "AS IS" BASIS,
8+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
// See the License for the specific language governing permissions and
10+
// limitations under the License.
11+
112
import { Agent, AgentContext, AgentInputMessage, AgentMeta } from '@ai-app/agent';
213

314
export default class MyAppletAgent extends Agent {

demohouse/teacher_avatar/src/api/bridge.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
2+
// Licensed under the 【火山方舟】原型应用软件自用许可协议
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
// https://www.volcengine.com/docs/82379/1433703
6+
// Unless required by applicable law or agreed to in writing, software
7+
// distributed under the License is distributed on an "AS IS" BASIS,
8+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
// See the License for the specific language governing permissions and
10+
// limitations under the License.
11+
112
import { createAPI, createEvent } from '@ai-app/bridge-base';
213

314
/**

demohouse/teacher_avatar/src/api/llm.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
2+
// Licensed under the 【火山方舟】原型应用软件自用许可协议
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
// https://www.volcengine.com/docs/82379/1433703
6+
// Unless required by applicable law or agreed to in writing, software
7+
// distributed under the License is distributed on an "AS IS" BASIS,
8+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
// See the License for the specific language governing permissions and
10+
// limitations under the License.
11+
112
import { appletRequest, StreamEvent, StreamRequestHandle } from '@ai-app/bridge-api';
213
import { CAMER_MODE } from '@/types';
314
import { IMessage } from '@/pages/entry/routes/recognition-result/components/AnswerCard';

demohouse/teacher_avatar/src/app.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
2+
// Licensed under the 【火山方舟】原型应用软件自用许可协议
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
// https://www.volcengine.com/docs/82379/1433703
6+
// Unless required by applicable law or agreed to in writing, software
7+
// distributed under the License is distributed on an "AS IS" BASIS,
8+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
// See the License for the specific language governing permissions and
10+
// limitations under the License.
11+
112
import { defineApp } from '@ai-app/agent';
213

314
export default defineApp({

demohouse/teacher_avatar/src/pages/entry/components/RecognitionGuide/components/TipItem/index.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
2+
// Licensed under the 【火山方舟】原型应用软件自用许可协议
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
// https://www.volcengine.com/docs/82379/1433703
6+
// Unless required by applicable law or agreed to in writing, software
7+
// distributed under the License is distributed on an "AS IS" BASIS,
8+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
// See the License for the specific language governing permissions and
10+
// limitations under the License.
11+
112
import React from 'react';
213

314
interface TipItemProps {

demohouse/teacher_avatar/src/pages/entry/components/RecognitionGuide/index.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
2+
// Licensed under the 【火山方舟】原型应用软件自用许可协议
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
// https://www.volcengine.com/docs/82379/1433703
6+
// Unless required by applicable law or agreed to in writing, software
7+
// distributed under the License is distributed on an "AS IS" BASIS,
8+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
// See the License for the specific language governing permissions and
10+
// limitations under the License.
11+
112
import React from 'react';
213

314
import { close } from '@ai-app/bridge-api/procode';

0 commit comments

Comments
 (0)