File size: 994 Bytes
cec362b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import os
import streamlit as st
from groq import Groq

# Set up Groq client with API key
client = Groq(
    api_key=os.environ.get("GROQ_API_KEY"),
)

# Streamlit UI
st.title("AI-powered CV Generator")

# Input fields for CV details
name = st.text_input("Name")
email = st.text_input("Email")
phone = st.text_input("Phone Number")
experience = st.text_area("Experience")
skills = st.text_area("Skills")

# Button to generate CV
if st.button("Generate CV"):
    # Constructing the content for the Groq model
    prompt = f"Create a CV for {name}. Email: {email}, Phone: {phone}. Experience: {experience}. Skills: {skills}."

    # Calling the Groq API
    chat_completion = client.chat.completions.create(
        messages=[
            {
                "role": "user",
                "content": prompt,
            }
        ],
        model="mixtral-8x7b-32768",
    )

    # Displaying the generated CV
    cv_content = chat_completion.choices[0].message.content
    st.write(cv_content)