saadalafalcon commited on
Commit
d731ea1
1 Parent(s): f65b882

Upload 2 files

Browse files
gpt3_5_(aramail)_b5shm_alriyal.py ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ """GPT3.5 (AraMail) b5shm_alriyal.ipynb
3
+
4
+ Automatically generated by Colaboratory.
5
+
6
+ Original file is located at
7
+ https://colab.research.google.com/drive/188Zgvg152MTpUdJqYxrPYWHLN1lVNgqR
8
+ """
9
+
10
+ import openai
11
+ # Set your OpenAI API key
12
+ openai.api_key = "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"
13
+
14
+ # Function to generate a concise explanation story using GPT-3
15
+ def generate_concise_explanation_story(prompt):
16
+ # Define a concise prompt for GPT-3
17
+
18
+ # Use GPT-3 to generate the concise explanation
19
+ response = openai.ChatCompletion.create(
20
+ model="gpt-3.5-turbo",
21
+ messages=[
22
+ {"role": "system", "content": """Act as an formal arabic generator, the user will ask you about a
23
+ specific subject and you will generate a formal arabic email based on the subject.
24
+ this is an example for the structure that you will generate: الموضوع: طلب استفسار
25
+
26
+ السيد/السيدة [الاسم الكامل],
27
+
28
+ أتمنى أن تكون بأتم الصحة والعافية.
29
+
30
+ أود أن أطلب من حضرتكم إعطائي مزيد من المعلومات حول [الموضوع الذي تود الاستفسار عنه]. وأود أيضاً الاطلاع على [المستندات/المعلومات الإضافية] التي قد تكون مفيدة في هذا السياق.
31
+
32
+ أشكر لكم تعاونكم وجهودكم المبذولة في تقديم المساعدة. لا تترددوا في الاتصال بي إذا كانت هناك أي أسئلة إضافية.
33
+
34
+ شكراً لحسن تعاونكم.
35
+
36
+ سلمت يداكم،
37
+
38
+ [الاسم الكامل]
39
+ [المسمى الوظيفي]
40
+ [رقم الهاتف]
41
+ [البريد الإلكتروني]
42
+ """
43
+ },
44
+ {"role": "user", "content": prompt}
45
+ ]
46
+ )
47
+
48
+ #concise_explanation = response['choices'][0]['message']['content'].strip()
49
+ concise_explanation = response.choices[0].message['content']
50
+ return concise_explanation
51
+
52
+ import gradio as gr
53
+ iface = gr.Interface(
54
+ fn=generate_concise_explanation_story,
55
+ inputs=gr.components.Textbox(lines=2, placeholder="Type your request here..."),
56
+ outputs=gr.components.Textbox(label="Generated Email"),
57
+ title="AraMail GPT 3.5",
58
+ description="Generates an official email based on the provided subject and order. Example prompt: 'ابغى طلب استقالة من شركة طويق اسمي سعد'"
59
+ )
60
+
61
+ # Run the interface
62
+ iface.launch(share=True)
63
+
requairments.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ openai==0.28
2
+ gradio