yosuke-i commited on
Commit
b0eabed
1 Parent(s): 64a9493

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -0
app.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ # テキストを逆さにする関数
4
+ def reverse_text(text):
5
+ return text[::-1]
6
+
7
+ # Gradioインターフェイスを作成
8
+ interface = gr.Interface(
9
+ fn=reverse_text, # 使用する関数
10
+ inputs="text", # 入力のタイプ
11
+ outputs="text", # 出力のタイプ
12
+ title="テキストリバーサー", # インターフェイスのタイトル
13
+ description="テキストを逆さにするツール" # インターフェイスの説明
14
+ )
15
+
16
+ # インターフェイスを実行
17
+ interface.launch()