Spaces:
Sleeping
Sleeping
update
Browse files- .pre-commit-config.yaml +0 -60
- .vscode/settings.json +0 -30
- app.py +5 -1
.pre-commit-config.yaml
DELETED
@@ -1,60 +0,0 @@
|
|
1 |
-
repos:
|
2 |
-
- repo: https://github.com/pre-commit/pre-commit-hooks
|
3 |
-
rev: v4.6.0
|
4 |
-
hooks:
|
5 |
-
- id: check-executables-have-shebangs
|
6 |
-
- id: check-json
|
7 |
-
- id: check-merge-conflict
|
8 |
-
- id: check-shebang-scripts-are-executable
|
9 |
-
- id: check-toml
|
10 |
-
- id: check-yaml
|
11 |
-
- id: end-of-file-fixer
|
12 |
-
- id: mixed-line-ending
|
13 |
-
args: ["--fix=lf"]
|
14 |
-
- id: requirements-txt-fixer
|
15 |
-
- id: trailing-whitespace
|
16 |
-
- repo: https://github.com/myint/docformatter
|
17 |
-
rev: v1.7.5
|
18 |
-
hooks:
|
19 |
-
- id: docformatter
|
20 |
-
args: ["--in-place"]
|
21 |
-
- repo: https://github.com/pycqa/isort
|
22 |
-
rev: 5.13.2
|
23 |
-
hooks:
|
24 |
-
- id: isort
|
25 |
-
args: ["--profile", "black"]
|
26 |
-
- repo: https://github.com/pre-commit/mirrors-mypy
|
27 |
-
rev: v1.9.0
|
28 |
-
hooks:
|
29 |
-
- id: mypy
|
30 |
-
args: ["--ignore-missing-imports"]
|
31 |
-
additional_dependencies:
|
32 |
-
[
|
33 |
-
"types-python-slugify",
|
34 |
-
"types-requests",
|
35 |
-
"types-PyYAML",
|
36 |
-
"types-pytz",
|
37 |
-
]
|
38 |
-
- repo: https://github.com/psf/black
|
39 |
-
rev: 24.4.0
|
40 |
-
hooks:
|
41 |
-
- id: black
|
42 |
-
language_version: python3.10
|
43 |
-
args: ["--line-length", "119"]
|
44 |
-
- repo: https://github.com/kynan/nbstripout
|
45 |
-
rev: 0.7.1
|
46 |
-
hooks:
|
47 |
-
- id: nbstripout
|
48 |
-
args:
|
49 |
-
[
|
50 |
-
"--extra-keys",
|
51 |
-
"metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
|
52 |
-
]
|
53 |
-
- repo: https://github.com/nbQA-dev/nbQA
|
54 |
-
rev: 1.8.5
|
55 |
-
hooks:
|
56 |
-
- id: nbqa-black
|
57 |
-
- id: nbqa-pyupgrade
|
58 |
-
args: ["--py37-plus"]
|
59 |
-
- id: nbqa-isort
|
60 |
-
args: ["--float-to-top"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.vscode/settings.json
DELETED
@@ -1,30 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"editor.formatOnSave": true,
|
3 |
-
"files.insertFinalNewline": false,
|
4 |
-
"[python]": {
|
5 |
-
"editor.defaultFormatter": "ms-python.black-formatter",
|
6 |
-
"editor.formatOnType": true,
|
7 |
-
"editor.codeActionsOnSave": {
|
8 |
-
"source.organizeImports": "explicit"
|
9 |
-
}
|
10 |
-
},
|
11 |
-
"[jupyter]": {
|
12 |
-
"files.insertFinalNewline": false
|
13 |
-
},
|
14 |
-
"black-formatter.args": [
|
15 |
-
"--line-length=119"
|
16 |
-
],
|
17 |
-
"isort.args": ["--profile", "black"],
|
18 |
-
"flake8.args": [
|
19 |
-
"--max-line-length=119"
|
20 |
-
],
|
21 |
-
"ruff.lint.args": [
|
22 |
-
"--line-length=119"
|
23 |
-
],
|
24 |
-
"notebook.output.scrolling": true,
|
25 |
-
"notebook.formatOnCellExecution": true,
|
26 |
-
"notebook.formatOnSave.enabled": true,
|
27 |
-
"notebook.codeActionsOnSave": {
|
28 |
-
"source.organizeImports": "explicit"
|
29 |
-
}
|
30 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app.py
CHANGED
@@ -68,7 +68,11 @@ def generate(
|
|
68 |
|
69 |
chat_interface = gr.ChatInterface(
|
70 |
fn=generate,
|
71 |
-
chatbot=gr.Chatbot(
|
|
|
|
|
|
|
|
|
72 |
additional_inputs=[
|
73 |
gr.Slider(
|
74 |
label="Max new tokens",
|
|
|
68 |
|
69 |
chat_interface = gr.ChatInterface(
|
70 |
fn=generate,
|
71 |
+
chatbot=gr.Chatbot(
|
72 |
+
scale=1,
|
73 |
+
likeable=False,
|
74 |
+
show_copy_button=True
|
75 |
+
),
|
76 |
additional_inputs=[
|
77 |
gr.Slider(
|
78 |
label="Max new tokens",
|