Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import os
|
2 |
import requests
|
3 |
-
import openai
|
4 |
import gradio as gr
|
|
|
5 |
|
6 |
# Fetch API keys from environment variables
|
7 |
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
|
@@ -55,13 +55,29 @@ def structure_email(user_data, linkedin_info, company_info):
|
|
55 |
|
56 |
# Function to generate email content using Nvidia Nemotron LLM
|
57 |
def generate_email_content(api_key, prompt):
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
prompt=prompt,
|
62 |
-
max_tokens=500
|
63 |
)
|
64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
# Function to validate the generated email for professional tone and completeness
|
67 |
def validate_email(email_content):
|
|
|
1 |
import os
|
2 |
import requests
|
|
|
3 |
import gradio as gr
|
4 |
+
from openai import OpenAI
|
5 |
|
6 |
# Fetch API keys from environment variables
|
7 |
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
|
|
|
55 |
|
56 |
# Function to generate email content using Nvidia Nemotron LLM
|
57 |
def generate_email_content(api_key, prompt):
|
58 |
+
client = OpenAI(
|
59 |
+
base_url="https://integrate.api.nvidia.com/v1",
|
60 |
+
api_key=api_key
|
|
|
|
|
61 |
)
|
62 |
+
|
63 |
+
completion = client.chat.completions.create(
|
64 |
+
model="nvidia/llama-3.1-nemotron-70b-instruct",
|
65 |
+
messages=[
|
66 |
+
{"role": "user", "content": prompt}
|
67 |
+
],
|
68 |
+
temperature=0.5,
|
69 |
+
top_p=1,
|
70 |
+
max_tokens=1024,
|
71 |
+
stream=True
|
72 |
+
)
|
73 |
+
|
74 |
+
# Collect the streamed response
|
75 |
+
response_text = ""
|
76 |
+
for chunk in completion:
|
77 |
+
if chunk.choices[0].delta.content is not None:
|
78 |
+
response_text += chunk.choices[0].delta.content
|
79 |
+
|
80 |
+
return response_text
|
81 |
|
82 |
# Function to validate the generated email for professional tone and completeness
|
83 |
def validate_email(email_content):
|