Spaces:
Runtime error
Runtime error
weiwei1392
commited on
Commit
β’
ab42177
1
Parent(s):
5344283
change name of app com
Browse files- .idea/.gitignore +3 -0
- .idea/inspectionProfiles/profiles_settings.xml +6 -0
- .idea/misc.xml +4 -0
- .idea/modules.xml +8 -0
- .idea/tiantong.iml +10 -0
- .idea/vcs.xml +6 -0
- __pycache__/config.cpython-39.pyc +0 -0
- __pycache__/llm.cpython-39.pyc +0 -0
- __pycache__/paper.cpython-39.pyc +0 -0
- __pycache__/prompt.cpython-39.pyc +0 -0
- __pycache__/question.cpython-39.pyc +0 -0
- __pycache__/utils.cpython-39.pyc +0 -0
- app.py +3 -3
- {app β app_com}/__pycache__/correct_assay.cpython-310.pyc +0 -0
- {app β app_com}/__pycache__/correct_assay.cpython-39.pyc +0 -0
- {app β app_com}/__pycache__/generate_paper.cpython-310.pyc +0 -0
- {app β app_com}/__pycache__/generate_paper.cpython-39.pyc +0 -0
- {app β app_com}/__pycache__/reading_comprehension.cpython-310.pyc +0 -0
- {app β app_com}/__pycache__/reading_comprehension.cpython-39.pyc +0 -0
- {app β app_com}/correct_assay.py +0 -0
- {app β app_com}/generate_paper.py +0 -0
- {app β app_com}/reading_comprehension.py +0 -0
.idea/.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
# Default ignored files
|
2 |
+
/shelf/
|
3 |
+
/workspace.xml
|
.idea/inspectionProfiles/profiles_settings.xml
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<project version="4">
|
3 |
+
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (ElementaryAdaptiveLearning)" project-jdk-type="Python SDK" />
|
4 |
+
</project>
|
.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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/tiantong.iml" filepath="$PROJECT_DIR$/.idea/tiantong.iml" />
|
6 |
+
</modules>
|
7 |
+
</component>
|
8 |
+
</project>
|
.idea/tiantong.iml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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$/venv" />
|
6 |
+
</content>
|
7 |
+
<orderEntry type="jdk" jdkName="Python 3.9 (ElementaryAdaptiveLearning)" jdkType="Python SDK" />
|
8 |
+
<orderEntry type="sourceFolder" forTests="false" />
|
9 |
+
</component>
|
10 |
+
</module>
|
.idea/vcs.xml
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<project version="4">
|
3 |
+
<component name="VcsDirectoryMappings">
|
4 |
+
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
5 |
+
</component>
|
6 |
+
</project>
|
__pycache__/config.cpython-39.pyc
ADDED
Binary file (1.21 kB). View file
|
|
__pycache__/llm.cpython-39.pyc
ADDED
Binary file (4.16 kB). View file
|
|
__pycache__/paper.cpython-39.pyc
ADDED
Binary file (2.26 kB). View file
|
|
__pycache__/prompt.cpython-39.pyc
ADDED
Binary file (2.64 kB). View file
|
|
__pycache__/question.cpython-39.pyc
ADDED
Binary file (7.05 kB). View file
|
|
__pycache__/utils.cpython-39.pyc
ADDED
Binary file (655 Bytes). View file
|
|
app.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
from llm import OpenAI3, OpenAI4
|
3 |
-
from
|
4 |
-
from
|
5 |
-
from
|
6 |
|
7 |
block_css = """
|
8 |
.importantButton {
|
|
|
1 |
import gradio as gr
|
2 |
from llm import OpenAI3, OpenAI4
|
3 |
+
from app_com.generate_paper import generate_paper
|
4 |
+
from app_com.reading_comprehension import text_generate, files_generate
|
5 |
+
from app_com.correct_assay import text_correct, files_correct
|
6 |
|
7 |
block_css = """
|
8 |
.importantButton {
|
{app β app_com}/__pycache__/correct_assay.cpython-310.pyc
RENAMED
File without changes
|
{app β app_com}/__pycache__/correct_assay.cpython-39.pyc
RENAMED
File without changes
|
{app β app_com}/__pycache__/generate_paper.cpython-310.pyc
RENAMED
File without changes
|
{app β app_com}/__pycache__/generate_paper.cpython-39.pyc
RENAMED
File without changes
|
{app β app_com}/__pycache__/reading_comprehension.cpython-310.pyc
RENAMED
File without changes
|
{app β app_com}/__pycache__/reading_comprehension.cpython-39.pyc
RENAMED
File without changes
|
{app β app_com}/correct_assay.py
RENAMED
File without changes
|
{app β app_com}/generate_paper.py
RENAMED
File without changes
|
{app β app_com}/reading_comprehension.py
RENAMED
File without changes
|