Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
import os
|
2 |
-
import
|
|
|
|
|
3 |
import gradio as gr
|
4 |
|
5 |
# Set OpenAI API key from environment variable
|
6 |
-
openai.api_key = os.environ.get("OPENAI_API_KEY")
|
7 |
|
8 |
# Function to generate customized career advice
|
9 |
def generate_career_advice(field, position_name, current_qualifications, likes, skills):
|
@@ -14,7 +15,6 @@ def generate_career_advice(field, position_name, current_qualifications, likes,
|
|
14 |
- Current Qualifications: {current_qualifications}
|
15 |
- Likes: {likes}
|
16 |
- Skills: {skills}
|
17 |
-
|
18 |
Include:
|
19 |
- Suitable career paths that are a good fit and in demand.
|
20 |
- Additional qualifications, courses, training, or certifications to pursue.
|
@@ -23,15 +23,13 @@ def generate_career_advice(field, position_name, current_qualifications, likes,
|
|
23 |
|
24 |
# Call the OpenAI API
|
25 |
try:
|
26 |
-
response =
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
temperature=0.7,
|
34 |
-
)
|
35 |
# Extract the response text
|
36 |
career_advice = response.choices[0].message.content.strip()
|
37 |
except Exception as e:
|
@@ -57,4 +55,3 @@ career_advice_app = gr.Interface(
|
|
57 |
|
58 |
# Launch the application
|
59 |
career_advice_app.launch(server_name="0.0.0.0", debug=True, share=True)
|
60 |
-
|
|
|
1 |
import os
|
2 |
+
from openai import OpenAI
|
3 |
+
|
4 |
+
client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY"))
|
5 |
import gradio as gr
|
6 |
|
7 |
# Set OpenAI API key from environment variable
|
|
|
8 |
|
9 |
# Function to generate customized career advice
|
10 |
def generate_career_advice(field, position_name, current_qualifications, likes, skills):
|
|
|
15 |
- Current Qualifications: {current_qualifications}
|
16 |
- Likes: {likes}
|
17 |
- Skills: {skills}
|
|
|
18 |
Include:
|
19 |
- Suitable career paths that are a good fit and in demand.
|
20 |
- Additional qualifications, courses, training, or certifications to pursue.
|
|
|
23 |
|
24 |
# Call the OpenAI API
|
25 |
try:
|
26 |
+
response = client.chat.completions.create(model="gpt-4", # Use "gpt-3.5-turbo" if desired
|
27 |
+
messages=[
|
28 |
+
{"role": "system", "content": "You are a helpful and knowledgeable career advisor."},
|
29 |
+
{"role": "user", "content": prompt},
|
30 |
+
],
|
31 |
+
max_tokens=512,
|
32 |
+
temperature=0.7)
|
|
|
|
|
33 |
# Extract the response text
|
34 |
career_advice = response.choices[0].message.content.strip()
|
35 |
except Exception as e:
|
|
|
55 |
|
56 |
# Launch the application
|
57 |
career_advice_app.launch(server_name="0.0.0.0", debug=True, share=True)
|
|