{"id":2925,"date":"2025-07-04T00:21:48","date_gmt":"2025-07-04T00:21:48","guid":{"rendered":"https:\/\/fadyanwar.com\/?p=2925"},"modified":"2025-07-04T00:46:40","modified_gmt":"2025-07-04T00:46:40","slug":"ai-powered-recruitment-assistant-with-ollama","status":"publish","type":"post","link":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/","title":{"rendered":"AI-Powered Recruitment Assistant with Ollama"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\"><strong>Transform Ollama into a Professional Recruiter AI<\/strong><\/h3>\n\n\n\n<p>Deploy a <strong>consistent, role-playing recruiter chatbot<\/strong> using Ollama in Docker with custom <strong>Modelfiles<\/strong>\u2014perfect for:<br>\u2714 <strong>Mock interviews<\/strong><br>\u2714 <strong>Candidate screening automation<\/strong><br>\u2714 <strong>HR training simulations<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>1. Set Up Ollama in Docker (Production-Ready)<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Pull the Official Ollama Docker Image<\/strong><\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ndocker run -d -p 11434:11434 --name recruiter-ai ollama\/ollama\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Create a Persistent Recruiter Modelfile<\/strong><\/h3>\n\n\n\n<p>Save this as <code>RecruiterModelfile<\/code> and copy you to your docker container using docker cp:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nFROM mistral  # or llama3, phi3  \n\n# System prompt defines the AI's role\nSYSTEM &quot;&quot;&quot;\nYou are Alex Carter, a senior tech recruiter specializing in:  \n- Software engineering (backend\/frontend)  \n- DevOps (AWS, Kubernetes)  \n- Data science (Python, SQL)  \n\nGuidelines:  \n1. Always greet candidates professionally  \n2. Ask 1 behavioral + 1 technical question per interaction  \n3. Provide brief, constructive feedback  \n4. Use corporate tone (no slang)  \n&quot;&quot;&quot;  \n\n# Optimize response quality\nPARAMETER temperature 0.3  # Less randomness\nPARAMETER repeat_penalty 1.1  # Avoids repetition\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Build &amp; Run Your Recruiter AI<\/strong><\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n# Build the custom model\ndocker exec -it recruiter-ai ollama create recruiter -f \/path\/to\/RecruiterModelfile\n\n# Start a session\ndocker exec -it recruiter-ai ollama run recruiter\n<\/pre><\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>2. Initiate Role-Play Interviews<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Example Workflow<\/strong><\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>AI Starts the Interview<\/strong><\/li>\n<\/ol>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n   &quot;Hello! I\u2019m Alex from the Talent Acquisition team. Thanks for joining today. \n   Let\u2019s begin with: Describe a time you led a technical project under tight deadlines.&quot;\n<\/pre><\/div>\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li><strong>Candidate Responds<\/strong><\/li>\n<\/ol>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n   &quot;I optimized our API latency by 40% using Redis caching last quarter.&quot;\n<\/pre><\/div>\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li><strong>AI Provides Feedback<\/strong><\/li>\n<\/ol>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n   &quot;Great results! Could you share the baseline metrics? Now, let\u2019s discuss \n   your approach to database indexing for high-traffic systems.&quot;\n<\/pre><\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>3. Advanced Deployment<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>A. Secure Container with Environment Variables<\/strong><\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ndocker run -d \\\n  -p 11434:11434 \\\n  -e OLLAMA_HOST=0.0.0.0 \\\n  -v ollama_data:\/root\/.ollama \\\n  --restart unless-stopped \\\n  ollama\/ollama\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\"><strong>B. Integrate with APIs (Python Example)<\/strong><\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nimport requests\n\nresponse = requests.post(\n  'http:\/\/localhost:11434\/api\/generate',\n  json={\n    &quot;model&quot;: &quot;recruiter&quot;,\n    &quot;prompt&quot;: &quot;Ask a Python technical question.&quot;,\n    &quot;stream&quot;: False\n  }\n)\nprint(response.json()&#x5B;&quot;response&quot;])\n# Output: &quot;How would you handle memory leaks in a long-running Python process?&quot;\n<\/pre><\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why This Works Best<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Consistency<\/strong>: Modelfile locks the recruiter persona.<\/li>\n\n\n\n<li><strong>Portability<\/strong>: Docker containers run anywhere (cloud\/on-prem).<\/li>\n\n\n\n<li><strong>Scalability<\/strong>: Deploy multiple interview bots via Kubernetes.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>Next Steps?<\/strong> Try:<br>\ud83d\udd39 Different models (<code>llama3<\/code> for longer conversations)<br>\ud83d\udd39 Webhook integrations with your ATS<br>\ud83d\udd39 Frontend UI using Ollama\u2019s API<\/p>\n\n\n\n<p>Need help customizing? Ask below! \ud83d\udc47 #AI #Recruitment #Docker #Ollama<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Transform Ollama into a Professional Recruiter AI Deploy a consistent, role-playing recruiter chatbot using Ollama in Docker with custom Modelfiles\u2014perfect for:\u2714 Mock interviews\u2714 Candidate screening automation\u2714 HR training simulations 1. Set Up Ollama in Docker (Production-Ready) Step 1: Pull the Official Ollama Docker Image Step 2: Create a Persistent Recruiter Modelfile Save this as RecruiterModelfile [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2930,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_editorskit_title_hidden":false,"_editorskit_reading_time":0,"_editorskit_is_block_options_detached":false,"_editorskit_block_options_position":"{}","_vp_format_video_url":"","_vp_image_focal_point":[],"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2925","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>AI-Powered Recruitment Assistant with Ollama - Fady Anwar<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AI-Powered Recruitment Assistant with Ollama - Fady Anwar\" \/>\n<meta property=\"og:description\" content=\"Transform Ollama into a Professional Recruiter AI Deploy a consistent, role-playing recruiter chatbot using Ollama in Docker with custom Modelfiles\u2014perfect for:\u2714 Mock interviews\u2714 Candidate screening automation\u2714 HR training simulations 1. Set Up Ollama in Docker (Production-Ready) Step 1: Pull the Official Ollama Docker Image Step 2: Create a Persistent Recruiter Modelfile Save this as RecruiterModelfile [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/\" \/>\n<meta property=\"og:site_name\" content=\"Fady Anwar\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-04T00:21:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-04T00:46:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/fadyanwar.com\/wp-content\/uploads\/2025\/07\/Screenshot-from-2025-07-04-01-19-47.png\" \/>\n\t<meta property=\"og:image:width\" content=\"840\" \/>\n\t<meta property=\"og:image:height\" content=\"607\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Fady Anwar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@fadyanwar\" \/>\n<meta name=\"twitter:site\" content=\"@fadyanwar\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fady Anwar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/\"},\"author\":{\"name\":\"Fady Anwar\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"headline\":\"AI-Powered Recruitment Assistant with Ollama\",\"datePublished\":\"2025-07-04T00:21:48+00:00\",\"dateModified\":\"2025-07-04T00:46:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/\"},\"wordCount\":154,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"image\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Screenshot-from-2025-07-04-01-19-47.png?fit=840%2C607&ssl=1\",\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/\",\"url\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/\",\"name\":\"AI-Powered Recruitment Assistant with Ollama - Fady Anwar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Screenshot-from-2025-07-04-01-19-47.png?fit=840%2C607&ssl=1\",\"datePublished\":\"2025-07-04T00:21:48+00:00\",\"dateModified\":\"2025-07-04T00:46:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Screenshot-from-2025-07-04-01-19-47.png?fit=840%2C607&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Screenshot-from-2025-07-04-01-19-47.png?fit=840%2C607&ssl=1\",\"width\":840,\"height\":607},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/07\\\/04\\\/ai-powered-recruitment-assistant-with-ollama\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/fadyanwar.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AI-Powered Recruitment Assistant with Ollama\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#website\",\"url\":\"https:\\\/\\\/fadyanwar.com\\\/\",\"name\":\"Fady Anwar\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/fadyanwar.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\",\"name\":\"Fady Anwar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"caption\":\"Fady Anwar\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AI-Powered Recruitment Assistant with Ollama - Fady Anwar","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/","og_locale":"en_US","og_type":"article","og_title":"AI-Powered Recruitment Assistant with Ollama - Fady Anwar","og_description":"Transform Ollama into a Professional Recruiter AI Deploy a consistent, role-playing recruiter chatbot using Ollama in Docker with custom Modelfiles\u2014perfect for:\u2714 Mock interviews\u2714 Candidate screening automation\u2714 HR training simulations 1. Set Up Ollama in Docker (Production-Ready) Step 1: Pull the Official Ollama Docker Image Step 2: Create a Persistent Recruiter Modelfile Save this as RecruiterModelfile [&hellip;]","og_url":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/","og_site_name":"Fady Anwar","article_published_time":"2025-07-04T00:21:48+00:00","article_modified_time":"2025-07-04T00:46:40+00:00","og_image":[{"width":840,"height":607,"url":"https:\/\/fadyanwar.com\/wp-content\/uploads\/2025\/07\/Screenshot-from-2025-07-04-01-19-47.png","type":"image\/png"}],"author":"Fady Anwar","twitter_card":"summary_large_image","twitter_creator":"@fadyanwar","twitter_site":"@fadyanwar","twitter_misc":{"Written by":"Fady Anwar","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/#article","isPartOf":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/"},"author":{"name":"Fady Anwar","@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"headline":"AI-Powered Recruitment Assistant with Ollama","datePublished":"2025-07-04T00:21:48+00:00","dateModified":"2025-07-04T00:46:40+00:00","mainEntityOfPage":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/"},"wordCount":154,"commentCount":0,"publisher":{"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"image":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/07\/Screenshot-from-2025-07-04-01-19-47.png?fit=840%2C607&ssl=1","articleSection":["Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/","url":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/","name":"AI-Powered Recruitment Assistant with Ollama - Fady Anwar","isPartOf":{"@id":"https:\/\/fadyanwar.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/#primaryimage"},"image":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/07\/Screenshot-from-2025-07-04-01-19-47.png?fit=840%2C607&ssl=1","datePublished":"2025-07-04T00:21:48+00:00","dateModified":"2025-07-04T00:46:40+00:00","breadcrumb":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/#primaryimage","url":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/07\/Screenshot-from-2025-07-04-01-19-47.png?fit=840%2C607&ssl=1","contentUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/07\/Screenshot-from-2025-07-04-01-19-47.png?fit=840%2C607&ssl=1","width":840,"height":607},{"@type":"BreadcrumbList","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/07\/04\/ai-powered-recruitment-assistant-with-ollama\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/fadyanwar.com\/"},{"@type":"ListItem","position":2,"name":"AI-Powered Recruitment Assistant with Ollama"}]},{"@type":"WebSite","@id":"https:\/\/fadyanwar.com\/#website","url":"https:\/\/fadyanwar.com\/","name":"Fady Anwar","description":"","publisher":{"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fadyanwar.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03","name":"Fady Anwar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","caption":"Fady Anwar"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g"}}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/07\/Screenshot-from-2025-07-04-01-19-47.png?fit=840%2C607&ssl=1","jetpack_sharing_enabled":true,"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2925","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/comments?post=2925"}],"version-history":[{"count":6,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2925\/revisions"}],"predecessor-version":[{"id":2932,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2925\/revisions\/2932"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/media\/2930"}],"wp:attachment":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/media?parent=2925"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/categories?post=2925"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/tags?post=2925"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}