Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into read_to_push
Browse files Browse the repository at this point in the history
  • Loading branch information
cinjospeh committed Jan 4, 2025
2 parents 5e6e473 + 56670f0 commit 94773e6
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 6 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/doc-image-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ on:
- main
paths:
- 'docs/**'
- '.github/workflows/docker-image-publish.yml'
pull_request:
paths:
- 'docs/**'
- '.github/workflows/docker-image-publish.yml'
release:
types: [published]
workflow_dispatch:
Expand Down Expand Up @@ -36,12 +38,22 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

# Only run when there is a PR
- name: Build PR
if: github.event_name == 'pull_request'
uses: docker/build-push-action@v4
with:
context: .
file: ./docs/Dockerfile-deploy
platforms: linux/amd64
push: false
# Only run when it is not a PR, build and push the image
- name: Build and push
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v4
with:
context: .
file: ./docs/Dockerfile-deploy
platforms: linux/amd64
# Only push when not in PR
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ github.event_name != 'pull_request' && 'eosphorosai/dbgpt-docs:${{ github.ref_name }},eosphorosai/dbgpt-docs:latest' || '' }}
push: true
tags: eosphorosai/dbgpt-docs:${{ github.ref_name }},eosphorosai/dbgpt-docs:latest
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

concurrency:
group: ${{ github.event.number || github.run_id }}
cancel-in-progress: true
cancel-in-progress: false

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

concurrency:
group: ${{ github.event.number || github.run_id }}
cancel-in-progress: true
cancel-in-progress: false

#permissions:
# contents: read
Expand Down
20 changes: 20 additions & 0 deletions DISCKAIMER.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# User Agreement and Disclaimer

1. If you do not agree with any content of this statement, please stop using this software immediately. Once you start using this software product and service, it means that you have agreed to all the contents of this statement

2. This disclaimer applies to all users of this software. This software reserves the right to modify and update this statement at any time, and notify users in the form of Github Readme, software updates, etc. Please review regularly and abide by the latest disclaimer.

3. The original design intention of this project is to provide a basic framework/tool ​​set, mainly focusing on RAGs,Agents, AWEL, etc. To keep the project simple and easy to use, we intentionally did not integrate any form of user login, authentication or authorization mechanism.

4. If you plan to deploy this project into a production environment, it is strongly recommended to connect to existing third-party authentication services (such as OAuth, OpenID Connect, etc.) according to your specific needs, or to develop and maintain a complete set of user management and permissions yourself. control system.

5. We encourage all developers to follow best practices to keep user data secure, but this is beyond the scope of this project. Therefore, always take appropriate security measures when handling sensitive information.

6. Users are responsible for the security configuration in their applications, including but not limited to user account management, password policies, access control lists, etc.

7. The project authors and contributors are not legally responsible for any direct or indirect losses caused by the use of this software.


Please read and understand all the contents of this disclaimer carefully before using this software, thank you for your understanding and support.


4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,11 @@

The purpose is to build infrastructure in the field of large models, through the development of multiple technical capabilities such as multi-model management (SMMF), Text2SQL effect optimization, RAG framework and optimization, Multi-Agents framework collaboration, AWEL (agent workflow orchestration), etc. Which makes large model applications with data simpler and more convenient.


🚀 **In the Data 3.0 era, based on models and databases, enterprises and developers can build their own bespoke applications with less code.**

### DISCKAIMER
- [disckaimer](./DISCKAIMER.md)

### AI-Native Data App
---
- 🔥🔥🔥 [Released V0.6.0 | A set of significant upgrades](https://docs.dbgpt.cn/docs/changelog/Released_V0.6.0)
Expand Down

0 comments on commit 94773e6

Please sign in to comment.