remove personal files
Browse files- .gitignore +5 -2
- .idea/.gitignore +0 -8
- .idea/inspectionProfiles/Project_Default.xml +0 -38
- .idea/inspectionProfiles/profiles_settings.xml +0 -6
- .idea/misc.xml +0 -7
- .idea/modules.xml +0 -8
- .idea/query_mcp_server.iml +0 -10
- .idea/vcs.xml +0 -6
- gradio_app.py +7 -6
.gitignore
CHANGED
|
@@ -3,15 +3,18 @@
|
|
| 3 |
*.vscode
|
| 4 |
*.iml
|
| 5 |
misc.xml
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
# Byte-compiled / optimized / DLL files
|
| 8 |
__pycache__/
|
| 9 |
*.py[cod]
|
| 10 |
*$py.class
|
| 11 |
-
|
| 12 |
# C extensions
|
| 13 |
*.so
|
| 14 |
-
|
| 15 |
# Distribution / packaging
|
| 16 |
.Python
|
| 17 |
build/
|
|
|
|
| 3 |
*.vscode
|
| 4 |
*.iml
|
| 5 |
misc.xml
|
| 6 |
+
.conda/
|
| 7 |
+
.venv/
|
| 8 |
+
.gradio/
|
| 9 |
|
| 10 |
# Byte-compiled / optimized / DLL files
|
| 11 |
__pycache__/
|
| 12 |
*.py[cod]
|
| 13 |
*$py.class
|
| 14 |
+
exports/charts/*
|
| 15 |
# C extensions
|
| 16 |
*.so
|
| 17 |
+
chat_history.json
|
| 18 |
# Distribution / packaging
|
| 19 |
.Python
|
| 20 |
build/
|
.idea/.gitignore
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
# Default ignored files
|
| 2 |
-
/shelf/
|
| 3 |
-
/workspace.xml
|
| 4 |
-
# Editor-based HTTP Client requests
|
| 5 |
-
/httpRequests/
|
| 6 |
-
# Datasource local storage ignored files
|
| 7 |
-
/dataSources/
|
| 8 |
-
/dataSources.local.xml
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.idea/inspectionProfiles/Project_Default.xml
DELETED
|
@@ -1,38 +0,0 @@
|
|
| 1 |
-
<component name="InspectionProjectProfileManager">
|
| 2 |
-
<profile version="1.0">
|
| 3 |
-
<option name="myName" value="Project Default" />
|
| 4 |
-
<inspection_tool class="PyPackageRequirementsInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
| 5 |
-
<option name="ignoredPackages">
|
| 6 |
-
<value>
|
| 7 |
-
<list size="25">
|
| 8 |
-
<item index="0" class="java.lang.String" itemvalue="motor" />
|
| 9 |
-
<item index="1" class="java.lang.String" itemvalue="PyJWT" />
|
| 10 |
-
<item index="2" class="java.lang.String" itemvalue="joblib" />
|
| 11 |
-
<item index="3" class="java.lang.String" itemvalue="scikit-learn" />
|
| 12 |
-
<item index="4" class="java.lang.String" itemvalue="python-dotenv" />
|
| 13 |
-
<item index="5" class="java.lang.String" itemvalue="Jinja2" />
|
| 14 |
-
<item index="6" class="java.lang.String" itemvalue="fastapi_jwt" />
|
| 15 |
-
<item index="7" class="java.lang.String" itemvalue="pydantic_mongo" />
|
| 16 |
-
<item index="8" class="java.lang.String" itemvalue="starlette" />
|
| 17 |
-
<item index="9" class="java.lang.String" itemvalue="uvicorn" />
|
| 18 |
-
<item index="10" class="java.lang.String" itemvalue="Markdown" />
|
| 19 |
-
<item index="11" class="java.lang.String" itemvalue="passlib" />
|
| 20 |
-
<item index="12" class="java.lang.String" itemvalue="pydantic-settings" />
|
| 21 |
-
<item index="13" class="java.lang.String" itemvalue="pydantic" />
|
| 22 |
-
<item index="14" class="java.lang.String" itemvalue="transformers" />
|
| 23 |
-
<item index="15" class="java.lang.String" itemvalue="triton" />
|
| 24 |
-
<item index="16" class="java.lang.String" itemvalue="pymongo" />
|
| 25 |
-
<item index="17" class="java.lang.String" itemvalue="langchain_core" />
|
| 26 |
-
<item index="18" class="java.lang.String" itemvalue="python-multipart" />
|
| 27 |
-
<item index="19" class="java.lang.String" itemvalue="bcrypt" />
|
| 28 |
-
<item index="20" class="java.lang.String" itemvalue="fastapi" />
|
| 29 |
-
<item index="21" class="java.lang.String" itemvalue="sentence_transformers" />
|
| 30 |
-
<item index="22" class="java.lang.String" itemvalue="contextvars" />
|
| 31 |
-
<item index="23" class="java.lang.String" itemvalue="beanie" />
|
| 32 |
-
<item index="24" class="java.lang.String" itemvalue="openpyxl" />
|
| 33 |
-
</list>
|
| 34 |
-
</value>
|
| 35 |
-
</option>
|
| 36 |
-
</inspection_tool>
|
| 37 |
-
</profile>
|
| 38 |
-
</component>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.idea/inspectionProfiles/profiles_settings.xml
DELETED
|
@@ -1,6 +0,0 @@
|
|
| 1 |
-
<component name="InspectionProjectProfileManager">
|
| 2 |
-
<settings>
|
| 3 |
-
<option name="USE_PROJECT_PROFILE" value="false" />
|
| 4 |
-
<version value="1.0" />
|
| 5 |
-
</settings>
|
| 6 |
-
</component>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.idea/misc.xml
DELETED
|
@@ -1,7 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
<project version="4">
|
| 3 |
-
<component name="Black">
|
| 4 |
-
<option name="sdkName" value="pyfapi_update" />
|
| 5 |
-
</component>
|
| 6 |
-
<component name="ProjectRootManager" version="2" project-jdk-name="mcp-vis" project-jdk-type="Python SDK" />
|
| 7 |
-
</project>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.idea/modules.xml
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
<project version="4">
|
| 3 |
-
<component name="ProjectModuleManager">
|
| 4 |
-
<modules>
|
| 5 |
-
<module fileurl="file://$PROJECT_DIR$/.idea/query_mcp_server.iml" filepath="$PROJECT_DIR$/.idea/query_mcp_server.iml" />
|
| 6 |
-
</modules>
|
| 7 |
-
</component>
|
| 8 |
-
</project>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.idea/query_mcp_server.iml
DELETED
|
@@ -1,10 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
<module type="PYTHON_MODULE" version="4">
|
| 3 |
-
<component name="NewModuleRootManager">
|
| 4 |
-
<content url="file://$MODULE_DIR$">
|
| 5 |
-
<excludeFolder url="file://$MODULE_DIR$/.idea/dataSources" />
|
| 6 |
-
</content>
|
| 7 |
-
<orderEntry type="jdk" jdkName="mcp-vis" jdkType="Python SDK" />
|
| 8 |
-
<orderEntry type="sourceFolder" forTests="false" />
|
| 9 |
-
</component>
|
| 10 |
-
</module>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.idea/vcs.xml
DELETED
|
@@ -1,6 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
<project version="4">
|
| 3 |
-
<component name="VcsDirectoryMappings">
|
| 4 |
-
<mapping directory="" vcs="Git" />
|
| 5 |
-
</component>
|
| 6 |
-
</project>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
gradio_app.py
CHANGED
|
@@ -71,12 +71,13 @@ with gr.Blocks() as demo:
|
|
| 71 |
flagging_options=["Like", "Spam", "Inappropriate", "Other"],
|
| 72 |
examples=[
|
| 73 |
"List all tables in the database",
|
| 74 |
-
"
|
| 75 |
-
"
|
| 76 |
-
"
|
| 77 |
-
"
|
| 78 |
-
"
|
| 79 |
-
"
|
|
|
|
| 80 |
],
|
| 81 |
save_history=True,
|
| 82 |
)
|
|
|
|
| 71 |
flagging_options=["Like", "Spam", "Inappropriate", "Other"],
|
| 72 |
examples=[
|
| 73 |
"List all tables in the database",
|
| 74 |
+
"how many customers do you have?",
|
| 75 |
+
"what are the statuses my of my customers",
|
| 76 |
+
"Visualize with different colors and show legend",
|
| 77 |
+
"what are the statues of my customers and how many are in each status, show it by percentage",
|
| 78 |
+
"Total number of completed orders in six years by customer count show top most 10 customers",
|
| 79 |
+
"In january how many products has been sold ? group them by year",
|
| 80 |
+
"How many users and roles have been created in 2024"
|
| 81 |
],
|
| 82 |
save_history=True,
|
| 83 |
)
|