
AI Services Projects
Looking for freelance artificial intelligence jobs and project work? Browse active opportunities on PeoplePerHour, or hire AI engineers through Toptal’s rigorously vetted talent network.
AI-Powered Website Development
We are looking for an experienced developer to build a modern website with AI-powered functionality. The goal is to create a fast, responsive, and user-friendly platform that integrates artificial intelligence to improve user interaction and automate common tasks. The website should have a professional design, clean architecture, and be built using modern development standards. Scope of Work Develop a responsive website for desktop and mobile devices. Integrate an AI assistant capable of answering user questions based on provided content. Build secure user authentication and an admin dashboard. Create pages for services, documentation, and contact information. Implement a searchable knowledge base. Connect the website to a database for managing content. Optimize performance, accessibility, and SEO. Apply standard security best practices. Test the application before final delivery. Required Skills AI application development. React, Next.js, or similar frontend framework. Node.js, Python, or equivalent backend technologies. Experience integrating LLM APIs. Database design (PostgreSQL or MySQL). REST API development. Git and version control. Preferred Qualifications Experience building AI-powered websites or SaaS applications. Knowledge of prompt engineering and retrieval-based AI solutions. Experience with cloud deployment. Strong communication and documentation skills. Deliverables Fully functional AI-powered website. Source code. Deployment instructions. Documentation for administration and future maintenance. Bug fixes during the agreed review period. Budget £800–£1,500 (open to proposals based on experience and implementation approach). Timeline Approximately 4–6 weeks. Please include examples of similar AI or web development projects and briefly explain your proposed technical approach.
2 minutes ago4 proposalsRemoteLooking for chatplus.jp developer
Do you have experience building scenarios for ChatPlus? https://chatplus.jp/ API integration will not be used in this project; the main task will be modifying some scenarios.
5 hours ago15 proposalsRemoteAi vedio editing
I am looking for an AI video editor to create engaging short videos for TikTok, Instagram Reels, and YouTube Shorts. The videos should include smooth transitions, captions, background music, and AI effects where needed. The final videos must be high quality, attractive, and delivered on time. Experience with CapCut, Canva, Runway, Pika, or other AI editing tools is preferred.
19 hours ago24 proposalsRemoteRewrite a Research Proposal for More Natural Academic Writing
I am looking for an experienced academic editor or dissertation writer to rewrite my DBA research proposal to improve its natural, human-written flow and academic style. The proposal has already been checked through Turnitin: * AI similarity is below 10%. * However, Turnitin still flags portions of the document for AI-generated writing. I am **not** looking for someone to simply paraphrase using AI tools. Instead, I need a skilled academic writer who can manually rewrite the content while preserving: * The original meaning and research objectives * Academic quality and logical flow * Citations and references (no changes unless required) * Professional DBA/doctoral-level writing style ### Scope of Work * Rewrite a few research proposal section by section. * Improve sentence structure, vocabulary, and transitions so the writing reads naturally. * Maintain all arguments, methodology, hypotheses, and research intent. * Ensure consistency in tone and formatting. * Return the document with Track Changes (preferred) or provide a clean final version. ### Requirements * Strong experience with academic writing, dissertations, or doctoral research. * Excellent English writing skills. * Familiarity with Turnitin reports and academic writing standards. * Ability to deliver high-quality, original writing without altering the research content. The proposal is approximately 36 pages titles, references, images and the content. But updates are very less. Please share: * Examples of similar dissertation or research proposal editing work. * Your estimated turnaround time. * Your fixed price for the project. This project may lead to additional work, including editing future dissertation chapters, if the quality is excellent.
a day ago22 proposalsRemoteBuild webscraper to collect data from outlet menus
I have a list of appr. 50.000 outlets, of which I want to have the menu information scraped cleansed and organised (see FACT DIM below). Assignment is to receive a working and tested code for doing that, perphaps for a smal sample of 100 outlets or so to see that it's working. Lump sum proposal please, needs to be ready asap. Best regards, Sander -------------- CREATE TABLE public.outlet ( outlet_id bigint GENERATED ALWAYS AS IDENTITY NOT NULL, naam text NOT NULL, plaats text, website_url text, segment text, status text NOT NULL DEFAULT 'actief'::text CHECK (status = ANY (ARRAY['actief'::text, 'inactief'::text])), created_at timestamp with time zone NOT NULL DEFAULT now(), updated_at timestamp with time zone NOT NULL DEFAULT now(), CONSTRAINT outlet_pkey PRIMARY KEY (outlet_id) ); CREATE TABLE public.menu_source ( source_id bigint GENERATED ALWAYS AS IDENTITY NOT NULL, outlet_id bigint NOT NULL, pagina_type text, url text NOT NULL, domain text, bestandstype text CHECK (bestandstype = ANY (ARRAY['html'::text, 'pdf'::text, 'image'::text])), confidence real, is_active boolean NOT NULL DEFAULT true, created_at timestamp with time zone NOT NULL DEFAULT now(), CONSTRAINT menu_source_pkey PRIMARY KEY (source_id), CONSTRAINT menu_source_outlet_id_fkey FOREIGN KEY (outlet_id) REFERENCES public.outlet(outlet_id) ); CREATE TABLE public.crawl_run ( run_id bigint GENERATED ALWAYS AS IDENTITY NOT NULL, source_id bigint NOT NULL, crawled_at timestamp with time zone NOT NULL DEFAULT now(), http_status integer, etag text, last_modified text, sha256 text, parse_status text NOT NULL DEFAULT 'pending'::text CHECK (parse_status = ANY (ARRAY['pending'::text, 'ok'::text, 'partial'::text, 'failed'::text, 'not_modified'::text])), parser_version text, raw_ref text, CONSTRAINT crawl_run_pkey PRIMARY KEY (run_id), CONSTRAINT crawl_run_source_id_fkey FOREIGN KEY (source_id) REFERENCES public.menu_source(source_id) ); CREATE TABLE public.menu_item ( menuitem_id bigint GENERATED ALWAYS AS IDENTITY NOT NULL, run_id bigint NOT NULL, categorie text, product text NOT NULL, beschrijving text, prijs numeric, valuta text NOT NULL DEFAULT 'EUR'::text, volume text, merk text, merkeigenaar text, positie integer, confidence real, CONSTRAINT menu_item_pkey PRIMARY KEY (menuitem_id), CONSTRAINT menu_item_run_id_fkey FOREIGN KEY (run_id) REFERENCES public.crawl_run(run_id) ); CREATE TABLE public.change_event ( event_id bigint GENERATED ALWAYS AS IDENTITY NOT NULL, outlet_id bigint NOT NULL, source_id bigint, oud_menuitem_id bigint, nieuw_menuitem_id bigint, detectiedatum timestamp with time zone NOT NULL DEFAULT now(), event_type text NOT NULL CHECK (event_type = ANY (ARRAY['product_toegevoegd'::text, 'product_verwijderd'::text, 'prijs_verhoogd'::text, 'prijs_verlaagd'::text, 'brand_switch'::text, 'menu_redesign'::text])), oude_waarde text, nieuwe_waarde text, ai_interpretatie text, impact text CHECK (impact = ANY (ARRAY['hoog'::text, 'midden'::text, 'laag'::text])), opportunity_score integer CHECK (opportunity_score >= 0 AND opportunity_score <= 100), aanbevolen_actie text, bevestigd_runs integer NOT NULL DEFAULT 1, status text NOT NULL DEFAULT 'nieuw'::text CHECK (status = ANY (ARRAY['nieuw'::text, 'bekeken'::text, 'afgehandeld'::text, 'false_positive'::text])), CONSTRAINT change_event_pkey PRIMARY KEY (event_id), CONSTRAINT change_event_outlet_id_fkey FOREIGN KEY (outlet_id) REFERENCES public.outlet(outlet_id), CONSTRAINT change_event_source_id_fkey FOREIGN KEY (source_id) REFERENCES public.menu_source(source_id), CONSTRAINT change_event_oud_menuitem_id_fkey FOREIGN KEY (oud_menuitem_id) REFERENCES public.menu_item(menuitem_id), CONSTRAINT change_event_nieuw_menuitem_id_fkey FOREIGN KEY (nieuw_menuitem_id) REFERENCES public.menu_item(menuitem_id) );
2 days ago28 proposalsRemoteFreelancer required with excellent Ai skills
I require a freelancer with experince and knowledg of the best Ai for video editting and photo manipulation. I will supply the required photos and video, for a freelancer to work with. More dtails upon request Immediate start required. No AI replies please,
2 days ago30 proposalsRemotePhotoshop & AI Specialist for Realistic 3D Floor Plans
We're looking for a talented Photoshop and AI image editing specialist to join our team on an ongoing freelance basis. Your role will be to create realistic 3D top-down floor plans for luxury residential properties featured across our YouTube channels, including The Luxury Home Show, The New Build Show and The Interior Design Show. These floor plans are used within our professionally produced long-form property tours and must accurately reflect the layout, furniture, flooring and finishes shown in the original property. For each project, we'll provide: - The original architectural floor plan. - Video walkthroughs of the property. Using these materials, you'll recreate the property as a realistic 3D floor plan before producing a final AI-enhanced render ready for use in our videos. We're looking for someone who: - Has advanced Adobe Photoshop skills. - Has experience with AI image generation and editing tools (such as ChatGPT, Artlist AI or similar). - Has excellent attention to detail and can accurately recreate interiors from reference material. - Can communicate and collaborate during UK business hours (Monday–Friday, approximately 9:00 am–5:00 pm GMT/BST). - Is looking for an ongoing working relationship with regular projects. Please note: A PDF guide is attached outlining our current workflow. We expect applicants to familiarise themselves with this process, as it demonstrates the quality and consistency we're looking for. However, we're not prescriptive about the software or workflow used. If you know of a faster or more efficient method that produces the same (or better) results while maintaining our quality standards, we're happy for you to use your preferred approach. The final output is more important than the process used to achieve it. When applying, please include examples of any relevant work, particularly architectural visualisation, Photoshop compositing, AI image editing or realistic floor plan creation. Applicants with relevant portfolio examples will be prioritised. We look forward to finding someone who can become a long-term part of our creative team.
3 days ago30 proposalsRemoteAI email marketing.
I need an expert in AI Marketing and ability to obtain contacts from our sources and regularly reach out via email indicating our services
3 days ago32 proposalsRemoteAI Platform Specialist (AI Test & Task Management)
We are looking for a reliable and experienced AI Platform Specialist to help manage our AI platform accounts. - Responsibilities 1 Complete and pass AI platform qualification tests. 2 Perform AI-related tasks assigned through the platform. 3 Manage AI platform accounts responsibly and consistently. 4 Maintain high-quality work and meet deadlines. - Requirements 1 Previous experience working with one or more AI platforms. 2 Strong English reading and writing skills. 3 Honest, responsible, and detail-oriented. 4 Able to follow instructions carefully and work independently. - How to Apply - Please include the following in your application: 1. A brief introduction about yourself. 2. Your experience working with AI platforms. 3. Which AI platforms have you worked on? 4. The date you most recently completed an AI qualification test and AI task. 5. A screenshot showing your most recent completed AI test or task (if available). Only applicants with relevant AI platform experience will be considered. We look forward to hearing from you.
4 days ago18 proposalsRemote3D animation
Hi I’m looking for a person that can do 3d animation for jewellery. I have tgese 5 animal charms and I want them to be able to appear one by one in a single video and maybe a title facial movement if possible. I’ve attached an expanded of one of the charms and I only have pictures to send no cad file unfortunately. Let me know
4 days ago23 proposalsRemoteE-book ready for ACX
I have had my book turned into audio and need it fine tuned to be uploaded straight on ACX platform it has been developed using elevenlabs.io using AI voice, but needs fine tuning. There are 9 chapters including intro and closing this will need to be separated too it is roughly 3 hours long. Please only apply if you are experienced in uploading e-books to ACX and understand the format needed. You will need to sign a NDA as all rights remain with author.
4 days ago14 proposalsRemoteI need a video creating to promote our new & Exclusive app!
https://www.vervesport.co.uk/kit-builder - this is the link we need to generate an informative video relating to our kit builder but this is specific to our boxing section. The app allows customers to create a bespoke order from scratch, choosing tshirt colours & quantities as well as an endless amount of bespoke options like glitter, reflective, snake skin to name a few. Creating bespoke shirts, shorts, tracksuits for fight night or training! Quickly Take them through the ordering system app the app; 1. Boxing 2. Select product 3. Select colours 4. Select quantity’s & sizes 5. Select customisation (team name, sponsors logos, available in over 80 different colours & effects). 6. Delivery - express or standard! We have plenty of projects coming up so we need someone reliable who we can work with continuously!
6 days ago22 proposalsRemoteAI Architectural Visualize & Cinematic for Unbuilt Luxury Villas
(Please show your portfolio or work) Seeking an expert AI architectural visualization artist to craft ultra-photorealistic renders and a cinematic 30–60s walkthrough of luxury unbuilt villas from plans, CAD or references. Deliverables: 4K horizontal video, vertical 9:16 cut, 5–10 high-res stills, source files if available, and commercial usage rights. Style: modern luxury, golden-hour lighting, smooth drone fly-throughs, premium landscaping, realistic materials and reflections. Provide portfolio, AI video examples, software used, timeline and fixed price. Only experienced luxury visualization professionals.
6 days ago11 proposalsRemoteFull Stack AI Developer for Healthcare SaaS
Seeking an experienced Full Stack AI Developer to build a production-grade Healthcare SaaS leveraging LLMs, RAG, and AI agents. Responsibilities: design end-to-end architecture, implement contextual AI chatbot, develop RAG pipelines for healthcare documents, build agent tooling and workflow automation, secure backend APIs and authentication, and create a responsive React/Next.js frontend. Required expertise: Python (FastAPI), LLMs (OpenAI or equivalents), LangChain/LlamaIndex/LangGraph, vector DBs (Pinecone, Weaviate, Chroma, FAISS), and cloud deployment (AWS/Azure/GCP). Healthcare product experience and demonstrated RAG/agent projects are highly desirable.
7 days ago56 proposalsRemoteIcelandic Speakers for Data Audio Collection Project
We’re currently inviting native Icelandic speakers from Iceland to join a paid, fully remote AI audio task. Who we’re looking for: Icelandic speakers from Iceland Task details: 10 short phone calls with an AI bot $18per call ($180 total) Around 30 minutes to complete 100% remote No experience needed How to get started: Complete a quick 30-second Icelandic verification on Click worker (required) Once approved, you’ll get access to the paid audio task
9 days ago1 proposalRemoteAI Engineer / NLP Engineer for an AI BF/GF Product
We are launching a product in the AI romantic companions / AI BF/GF niche and need a specialist to take over the AI development part. The website, registration, design, menu and payment system are handled separately. This role focuses only on the AI core: dialogue models, AI characters, memory, user adaptation, realistic image generation and MVP AI architecture. Required skills LLMs for conversational AI products. Testing and comparing open-source and commercial models. Llama / Hugging Face / vLLM / Text Generation Inference. System prompts for AI characters. Prompt engineering, fine-tuning and LoRA. Memory layer design: mem0, Qdrant, embeddings, RAG. Python, Docker, PostgreSQL, Redis. GPU infrastructure and model deployment. AI image generation: FLUX.1 / Stable Diffusion / ComfyUI. Consistent face setup for AI characters. Moderation / safety filters for AI dialogues. Tasks Select and test LLMs for romantic AI dialogues, set up AI characters, design user memory, plan adaptation to the user’s communication style, and suggest a pipeline for realistic AI selfies. Experience with AI companions, dating, chatbots, virtual characters, roleplay scenarios or conversational AI is a plus. The candidate should be ready to complete a short test task. Please include your stack, relevant experience, project examples, readiness to complete the test task and your rate / estimated project cost.
10 days ago32 proposalsRemoteAI-Powered Customer Support Chatbot Development
I'm seeking a Software Engineering Intern or Junior AI Developer to assist in the development of an AI-powered customer support chatbot. The project focuses on building an intelligent conversational assistant capable of answering user questions, retrieving information from knowledge bases, and providing accurate responses through modern AI technologies. The chatbot will support web-based interactions and utilize Large Language Models (LLMs) and Retrieval-Augmented Generation (RAG) techniques to improve response quality and contextual understanding.
11 days ago68 proposalsRemoteopportunity
AI-Powered Deal Origination & Opportunity Intelligence Platform
Overview Build an MVP AI-powered deal origination and opportunity intelligence platform to identify UK private company acquisition, succession, refinancing and distressed opportunities. The platform should analyse public company data, identify high-probability opportunities, enrich decision-maker information, generate AI reports and support targeted outreach. This is an MVP validation project requiring a fast, practical build with scalable foundations, not an enterprise solution. Core Objectives The platform must: • Collect company/director data • Analyse and score opportunities • Identify decision makers • Enrich contacts • Generate AI intelligence reports • Create outreach recommendations • Store opportunities in CRM • Maintain continuously updated pipelines Data Sources Required: • Companies House API • Gazette Insolvency Feed • Company websites • Public web research Preferred: • LinkedIn enrichment • Contact providers • News feeds • Business directories Future: Planning data, Land Registry/property ownership, email automation, workflows, dashboards, additional providers and AI agents. Functional Requirements 1. Company Intelligence Engine Retrieve, store and update: • Company name, number, address and SIC codes • Filing history, accounts and charges/mortgages • Directors and shareholders where available • Insolvency notices and Gazette events • Website and content summaries Maintain structured profiles for each company. 2. Opportunity Scoring Engine Core IP component. Must be configurable, AI-independent and adjustable without code changes. Required: • Weighted and rule-based scoring • Score explanations • Confidence ratings Scores: Acquisition: revenue, EBITDA/profitability, growth, recurring income, sector attractiveness, leverage. Succession: director age, ownership length, ownership concentration, management depth, succession indicators. Refinancing: lender charges, debt profile, leverage, property ownership, maturity indicators. Distress: insolvency notices, winding-up petitions, director resignations, overdue filings, negative trends. Probability of Sale: founder age, ownership duration, succession indicators, growth plateau, market conditions. Example: Sale Score: 86/100 Reasons: • Founder age estimated 67 • Sole shareholder • 24 years ownership • Stable profitability • No succession structure identified AI explains scores; scoring remains framework-driven. 3. Contact Enrichment Identify/store: • Founder, CEO, Managing Director, shareholders • Email, telephone, website, LinkedIn • Decision-maker information Supports future outreach and relationship development. 4. AI Intelligence Briefs Generate for high-ranking opportunities: Company Summary: Business description, financial overview, strengths. Opportunity Summary: Selection rationale, engagement potential, strategic rationale. Engagement Angle: Succession planning, growth capital, partnership, acquisition or refinancing 5. CRM MVP CRM must support: • Opportunity storage • Search/filtering • Notes and comments • Status tracking • Outreach tracking • Score history Workflow: Identified → Qualified → Contacted → Conversation Started → Active → Mandated → Closed 6. Outreach Intelligence Generate/store: • Personalised emails • LinkedIn messages • Telephone briefs No automated sending required AI Architecture Use model-agnostic architecture that remains operational if providers change Support: OpenAI, Anthropic Claude, Google Gemini, Meta Llama, DeepSeek, Qwen and future providers Admin controls: • Select AI provider • Change providers without code changes • Configure API keys • Add models Scoring must remain independent of AI Technology Backend: Python, FastAPI Database: PostgreSQL, Supabase Frontend: React, Next.js Infrastructure: AWS, Vercel, Supabase AI: Provider-agnostic APIs with future agent support Scalability Support future: • Multi-agent workflows • AI orchestration/MCP • Additional APIs • Email and workflow automation • Large-scale analysis • Advanced reporting Future integrations: CRM systems, enrichment providers, email systems, Land Registry, planning/property/commercial intelligence sources Dashboard Provide a simple user-friendly dashboard for non-technical sales/outreach users with navigation, opportunity views, filtering, pipeline management and AI insight access Deliverables • Working MVP • Source code • Deployment instructions • Technical documentation • Configurable scoring engine • CRM • Company intelligence engine • Contact enrichment • AI opportunity reports • Outreach generation • User administration • Large-scale UK company analysis capability Proposal Requirements Include: • Relevant examples • Architecture • Technology stack • Cost estimate • Delivery timeframe • Support options • MVP improvements Budget Open to proposals. Preference for developers experienced in AI intelligence platforms, CRM systems, API integrations and scalable MVP delivery rather than enterprise builds
11 days ago53 proposalsRemoteAI assistant call handling
I’m looking for a developer to build an AI-powered call handling and dispatch system for emergency/facilities maintenance calls, similar to corecall.co.uk. I have an existing IP phone system this needs to integrate with. ( Hihi) What it needs to do: • Answer inbound calls via AI (voice agent), 24/7 • Have a natural conversation to capture caller name, location, fault description, and urgency • Automatically match and dispatch the right engineer based on skill, location, and availability • Send SMS/email notifications to both the engineer and the customer • Provide a live dashboard showing incidents, statuses, and engineer availability • Integrate with our existing systems Ideal experience: • Voice AI platforms (Vapi, Retell, Bland, or similar) • SIP/VoIP and PBX integration (3CX experience a strong plus) • Backend development (Node.js or similar) — APIs, webhooks, databases • Twilio or similar for SMS/email notifications • Comfortable building a clean operational dashboard Nice to have: • Prior experience building call-handling/dispatch systems for trades, FM, or field service businesses • Experience with Anthropic/OpenAI APIs for conversational logic To apply, please include: • Relevant past projects (especially anything involving voice AI or SIP/PBX integration) • Your estimated hourly rate and roughly how many hours you’d expect this to take • Any questions about scope I already have a working architecture plan and some backend code scaffolded, so this isn’t starting from zero happy to share on request. PLEASE DO NOT ADD ME ON LINKED IN OR EMAIL ME OR MAKE ANY CONTACT OUTSIDE OF THIS PLATFORM I WILL REPORT AND BLOCK
11 days ago28 proposalsRemoteSetup Claude Code, Arvow & Blotato for content posting
I am looking to setup the instructions in the below video so that I can auto post content to my website and social media channels. https://www.youtube.com/watch?v=S3XcqumU2wQ
13 days ago19 proposalsRemote