LalitMahale commited on
Commit
62f3442
·
1 Parent(s): db1c994

grado added

Browse files
Files changed (4) hide show
  1. README.md +10 -1
  2. app.py +58 -0
  3. gen_ai.py +0 -0
  4. requirements.txt +1 -0
README.md CHANGED
@@ -1 +1,10 @@
1
- # Financial_data_classification
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+
4
+ title: Financial_data_classification
5
+ emoji: 🐳
6
+ colorFrom: purple
7
+ colorTo: gray
8
+ sdk: docker
9
+ app_port: 7860
10
+ ---
app.py ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ # Sample classes
4
+ class ResultA:
5
+ def __init__(self, query):
6
+ self.response = f"Result from Function A for query: {query}"
7
+
8
+ class ResultB:
9
+ def __init__(self, query):
10
+ self.response = f"Result from Function B for query: {query}"
11
+
12
+ class ResultC:
13
+ def __init__(self, query):
14
+ self.response = f"Result from Function C for query: {query}"
15
+
16
+ # Functions that return class instances
17
+ def function_a(query):
18
+ return ResultA(query)
19
+
20
+ def function_b(query):
21
+ return ResultB(query)
22
+
23
+ def function_c(query):
24
+ return ResultC(query)
25
+
26
+ # Function to handle user input
27
+ def handle_query(function_choice, query):
28
+ function_map = {
29
+ "Function A": function_a,
30
+ "Function B": function_b,
31
+ "Function C": function_c,
32
+ }
33
+
34
+ if function_choice in function_map:
35
+ result = function_map[function_choice](query)
36
+ return result.response
37
+ else:
38
+ return "Invalid selection."
39
+
40
+ # Gradio Interface
41
+ iface = gr.Interface(
42
+ fn=handle_query,
43
+ inputs=[
44
+ gr.Radio(["Function A", "Function B", "Function C"], label="Select Function"),
45
+ gr.Textbox(label="Enter Query")
46
+ ],
47
+ outputs=gr.Textbox(label="Response"),
48
+ title="Function Selector",
49
+ description="Select a function, enter a query, and get a response.",
50
+ # Adding footer details
51
+ article="""
52
+ **About this application:**
53
+ This tool allows users to select a function, input a query, and get a response based on the selected function.
54
+ Developed using Gradio.
55
+ """
56
+ )
57
+
58
+ iface.launch()
gen_ai.py ADDED
File without changes
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ gradio