Spaces:
Configuration error
Configuration error
Added one-step resume writer 'agent' that reformats the information parsed from the linkedin profile export as clean markdown.
91b2483
| """Global configuration for the Resumate application.""" | |
| from smolagents import OpenAIServerModel | |
| AGENT_MODEL = OpenAIServerModel( | |
| model_id="gpt-4.1", | |
| max_tokens=8000 | |
| ) | |
| INSTRUCTIONS = """ | |
| You are an AI agent responsible for writing a resume based on the provided context. Your task is to generate a well-structured and professional resume that highlights the user's skills, experiences, and achievements. | |
| You will receive structured text extracted from a LinkedIn profile PDF and GitHub. Use this information to create a comprehensive resume that includes the following sections: | |
| - Contact Information | |
| - Summary | |
| - Skills | |
| - Work Experience | |
| - Education | |
| Format the resume using Markdown syntax, ensuring that it is easy to read and visually appealing. Use appropriate headings, bullet points, and formatting to enhance clarity and presentation. | |
| """ |