yashasgupta commited on
Commit
64fdec3
·
verified ·
1 Parent(s): a8eb649

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -11,11 +11,13 @@ os.environ["OPENAI_API_KEY"] = os.getenv("k1")
11
 
12
  st.markdown("Translation Application")
13
 
14
- options = ["English","Telugu","Hindi"]
15
 
16
- st.selectbox("Input Langauge: ",options)
17
 
18
- st.selectbox("Output langauge: ",options)
 
 
19
 
20
  text = st.text_input("Text Input: ")
21
 
@@ -28,7 +30,7 @@ if st.button("Submit"):
28
 
29
  chain = prompt|llm
30
 
31
- re = chain.invoke({"il":options,"ol":options, "i":text})
32
 
33
  st.write(re.content)
34
 
 
11
 
12
  st.markdown("Translation Application")
13
 
14
+ options1 = ["English","Telugu","Hindi"]
15
 
16
+ st.selectbox("Input Langauge: ",options1)
17
 
18
+ options2 = ["Hindi","Telugu","English"]
19
+
20
+ st.selectbox("Output langauge: ",options2)
21
 
22
  text = st.text_input("Text Input: ")
23
 
 
30
 
31
  chain = prompt|llm
32
 
33
+ re = chain.invoke({"il":options1,"ol":options2, "i":text})
34
 
35
  st.write(re.content)
36