Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing end of file chars #1106

Merged
merged 6 commits into from
Nov 13, 2024
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
2 changes: 1 addition & 1 deletion .github/code_spell_ignore.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ModelIn
modelin
modelin
2 changes: 1 addition & 1 deletion .github/license_template.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Copyright (C) 2024 Intel Corporation
SPDX-License-Identifier: Apache-2.0
SPDX-License-Identifier: Apache-2.0
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
**/playwright/.cache/
**/test-results/

__pycache__/
__pycache__/
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
**/kubernetes/
**/kubernetes/
2 changes: 1 addition & 1 deletion AudioQnA/ui/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ RUN npm run build
EXPOSE 5173

# Run the front-end application in preview mode
CMD ["npm", "run", "preview", "--", "--port", "5173", "--host", "0.0.0.0"]
CMD ["npm", "run", "preview", "--", "--port", "5173", "--host", "0.0.0.0"]
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/app.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ a.btn {

.w-12\/12 {
width: 100%
}
}
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/4.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/5.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/upload.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/voice.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/voiceOff.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/voiceOn.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AvatarChatbot/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
docker_compose/intel/cpu/xeon/data
docker_compose/intel/hpu/gaudi/data
inputs/
outputs/
outputs/
2 changes: 1 addition & 1 deletion ChatQnA/ui/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ RUN npm run build
EXPOSE 5173

# Run the front-end application in preview mode
CMD ["npm", "run", "preview", "--", "--port", "5173", "--host", "0.0.0.0"]
CMD ["npm", "run", "preview", "--", "--port", "5173", "--host", "0.0.0.0"]
2 changes: 1 addition & 1 deletion ChatQnA/ui/docker/Dockerfile.react
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ COPY --from=vite-app /usr/app/react/dist /usr/share/nginx/html
COPY ./react/env.sh /docker-entrypoint.d/env.sh

COPY ./react/nginx.conf /etc/nginx/conf.d/default.conf
RUN chmod +x /docker-entrypoint.d/env.sh
RUN chmod +x /docker-entrypoint.d/env.sh
2 changes: 1 addition & 1 deletion ChatQnA/ui/react/.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VITE_BACKEND_SERVICE_ENDPOINT=http://backend_address:8888/v1/chatqna
VITE_DATA_PREP_SERVICE_URL=http://backend_address:6007/v1/dataprep
VITE_DATA_PREP_SERVICE_URL=http://backend_address:6007/v1/dataprep
2 changes: 1 addition & 1 deletion ChatQnA/ui/react/.env.production
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VITE_BACKEND_SERVICE_ENDPOINT=APP_BACKEND_SERVICE_ENDPOINT
VITE_DATA_PREP_SERVICE_URL=APP_DATA_PREP_SERVICE_URL
VITE_DATA_PREP_SERVICE_URL=APP_DATA_PREP_SERVICE_URL
2 changes: 1 addition & 1 deletion ChatQnA/ui/react/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ server {
expires 1d;
}
}
}
}
2 changes: 1 addition & 1 deletion ChatQnA/ui/react/public/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion ChatQnA/ui/react/src/assets/react.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ export default function DataSource({ opened, onClose }: Props) {
</Container>
</Drawer>
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ const UserInfoModal = () => {
)
}

export default UserInfoModal
export default UserInfoModal
2 changes: 1 addition & 1 deletion ChatQnA/ui/svelte/src/app.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ a.btn {

.w-12\/12 {
width: 100%
}
}
2 changes: 1 addition & 1 deletion ChatQnA/ui/svelte/src/lib/assets/voice/svg/paste.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading