shukdevdatta123 commited on
Commit
004d6c1
·
verified ·
1 Parent(s): dd5233f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +53 -0
app.py ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import openai
2
+ import streamlit as st
3
+
4
+ def translate_to_japanese(api_key, text):
5
+ """
6
+ Translates English text to Japanese using OpenAI's API.
7
+ """
8
+ # Validate input
9
+ if not api_key:
10
+ return "Error: API key is missing."
11
+ if not text:
12
+ return "Error: Input text is empty."
13
+
14
+ # Set the OpenAI API key
15
+ openai.api_key = api_key
16
+
17
+ # Define the prompt for translation
18
+ prompt = f"Translate the following English text to Japanese:\n\n{text}"
19
+
20
+ try:
21
+ # Call the OpenAI API to get the translation
22
+ response = openai.Completion.create(
23
+ engine="text-davinci-003", # Use gpt-3.5-turbo or other models if available
24
+ prompt=prompt,
25
+ max_tokens=150, # Adjust token limit for longer outputs
26
+ temperature=0.5
27
+ )
28
+
29
+ # Extract the translated text from the response
30
+ japanese_translation = response.choices[0].text.strip()
31
+ return japanese_translation
32
+
33
+ except openai.error.OpenAIError as e:
34
+ return f"OpenAI API error: {str(e)}"
35
+ except Exception as e:
36
+ return f"An unexpected error occurred: {str(e)}"
37
+
38
+ # Streamlit UI
39
+ st.title("English to Japanese Translator")
40
+ st.markdown("Translate English text into Japanese using OpenAI's API.")
41
+
42
+ # Input fields for the API key and text
43
+ api_key = st.text_input("Enter your OpenAI API key", type="password")
44
+ english_text = st.text_area("Enter the English text to translate")
45
+
46
+ # Button to trigger the translation
47
+ if st.button("Translate"):
48
+ if api_key and english_text:
49
+ japanese_text = translate_to_japanese(api_key, english_text)
50
+ st.markdown("### Translation Result:")
51
+ st.write(japanese_text)
52
+ else:
53
+ st.error("Please provide both an API key and text to translate.")