fizban99 commited on
Commit
e468f5a
1 Parent(s): c6745d5

First version

Browse files
Files changed (2) hide show
  1. README.md +2 -0
  2. app.py +13 -0
README.md CHANGED
@@ -10,4 +10,6 @@ pinned: false
10
  license: mit
11
  ---
12
 
 
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
10
  license: mit
11
  ---
12
 
13
+ This is a space to test the capabilities of my simple vector store database simiandb.
14
+
15
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ """
3
+ Created on Wed Mar 22 19:59:54 2023
4
+
5
+ """
6
+
7
+ import gradio as gr
8
+
9
+ def greet(name):
10
+ return "Hello " + name + "!!"
11
+
12
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
13
+ iface.launch()