0num4 commited on
Commit
1522a25
1 Parent(s): ea87ea7

feat: 普通に壊れてた

Browse files
Files changed (3) hide show
  1. app.py +1 -1
  2. poetry.lock +0 -0
  3. pyproject.toml +16 -0
app.py CHANGED
@@ -12,5 +12,5 @@ def chatinterface_fn(message, history):
12
  with gr.Blocks() as demo:
13
  name = gr.Textbox(label="name")
14
  output = gr.Interface(fn=greet, inputs=["text", "slider"], outputs="text")
15
- a = gr.ChatInterface(chatinterface_fn).launch()
16
  demo.launch()
 
12
  with gr.Blocks() as demo:
13
  name = gr.Textbox(label="name")
14
  output = gr.Interface(fn=greet, inputs=["text", "slider"], outputs="text")
15
+ a = gr.ChatInterface(chatinterface_fn)
16
  demo.launch()
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "zerogpudevmode"
3
+ version = "0.1.0"
4
+ description = "connect hf sample"
5
+ authors = ["0num4 <[email protected]>"]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "^3.12"
11
+ gradio = "^4.36.1"
12
+
13
+
14
+ [build-system]
15
+ requires = ["poetry-core"]
16
+ build-backend = "poetry.core.masonry.api"