Skip to content

Commit 9f32ace

Browse files
committed
update
1 parent 5fee5fa commit 9f32ace

15 files changed

+139
-0
lines changed

CODE_OF_CONDUCT.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Microsoft Open Source Code of Conduct
2+
3+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
4+
5+
Resources:
6+
7+
- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)
8+
- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
9+
- Contact [[email protected]](mailto:[email protected]) with questions or concerns

CONTRIBUTING.md

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
2+
To contribute to this GitHub project, you can follow these steps:
3+
4+
1. Fork the repository you want to contribute to by clicking the "Fork" button on the project page.
5+
6+
2. Clone the repository to your local machine and enter the newly created repo using the following commands:
7+
8+
```
9+
git clone https://github.com/YOUR-GITHUB-USERNAME/TaskMatrix.git
10+
cd TaskMatrix
11+
```
12+
3. Create a new branch for your changes using the following command:
13+
14+
```
15+
git checkout -b "branch-name"
16+
```
17+
4. Make your changes to the code or documentation.
18+
19+
5. Add the changes to the staging area using the following command:
20+
```
21+
git add .
22+
```
23+
24+
6. Commit the changes with a meaningful commit message using the following command:
25+
```
26+
git commit -m "your commit message"
27+
```
28+
7. Push the changes to your forked repository using the following command:
29+
```
30+
git push origin branch-name
31+
```
32+
8. Go to the GitHub website and navigate to your forked repository.
33+
34+
9. Click the "New pull request" button.
35+
36+
10. Select the branch you just pushed to and the branch you want to merge into on the original repository.
37+
38+
11. Add a description of your changes and click the "Create pull request" button.
39+
40+
12. Wait for the project maintainer to review your changes and provide feedback.
41+
42+
13. Make any necessary changes based on feedback and repeat steps 5-12 until your changes are accepted and merged into the main project.
43+
44+
14. Once your changes are merged, you can update your forked repository and local copy of the repository with the following commands:
45+
46+
```
47+
git fetch upstream
48+
git checkout main
49+
git merge upstream/main
50+
```
51+
Finally, delete the branch you created with the following command:
52+
```
53+
git branch -d branch-name
54+
```
55+
That's it you made it 🐣⭐⭐

LICENSE.md renamed to LICENSE.txt

File renamed without changes.

LowCodeLLM/src/app.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
import os
25
from flask import Flask, request, send_from_directory
36
from flask_cors import CORS, cross_origin

LowCodeLLM/src/executingLLM.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
from openAIWrapper import OpenAIWrapper
25

36
EXECUTING_LLM_PREFIX = """Executing LLM is designed to provide outstanding responses.

LowCodeLLM/src/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
<!-- Copyright (c) Microsoft Corporation.
2+
Licensed under the MIT License. -->
3+
14
<!DOCTYPE html>
25
<html lang="en">
36
<head>

LowCodeLLM/src/lowCodeLLM.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
from planningLLM import planningLLM
25
from executingLLM import executingLLM
36
import json

LowCodeLLM/src/openAIWrapper.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
import os
25
import openai
36

LowCodeLLM/src/planningLLM.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
import re
25
import json
36
from openAIWrapper import OpenAIWrapper

LowCodeLLM/src/test/test_execute.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
import json
25
import sys
36
import os

LowCodeLLM/src/test/test_extend_workflow.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
import json
25
import sys
36
import os

LowCodeLLM/src/test/test_get_workflow.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
import json
25
import sys
36
import os

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,7 @@ We appreciate the open source of the following projects:
141141
For help or issues using the TaskMatrix, please submit a GitHub issue.
142142

143143
For other communications, please contact Chenfei WU ([email protected]) or Nan DUAN ([email protected]).
144+
145+
# Trademark Notice
146+
147+
Trademarks This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.

SECURITY.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!-- BEGIN MICROSOFT SECURITY.MD V0.0.7 BLOCK -->
2+
3+
## Security
4+
5+
Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).
6+
7+
If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below.
8+
9+
## Reporting Security Issues
10+
11+
**Please do not report security vulnerabilities through public GitHub issues.**
12+
13+
Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report).
14+
15+
If you prefer to submit without logging in, send email to [[email protected]](mailto:[email protected]). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey).
16+
17+
You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc).
18+
19+
Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:
20+
21+
* Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)
22+
* Full paths of source file(s) related to the manifestation of the issue
23+
* The location of the affected source code (tag/branch/commit or direct URL)
24+
* Any special configuration required to reproduce the issue
25+
* Step-by-step instructions to reproduce the issue
26+
* Proof-of-concept or exploit code (if possible)
27+
* Impact of the issue, including how an attacker might exploit the issue
28+
29+
This information will help us triage your report more quickly.
30+
31+
If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs.
32+
33+
## Preferred Languages
34+
35+
We prefer all communications to be in English.
36+
37+
## Policy
38+
39+
Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd).
40+
41+
<!-- END MICROSOFT SECURITY.MD BLOCK -->

visual_chatgpt.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
# coding: utf-8
25
import os
36
import gradio as gr

0 commit comments

Comments
 (0)