DEV Community

brian austin
brian austin

Posted on

How I built a WhatsApp-style AI assistant for Filipino freelancers for ₱112/month

How I built a WhatsApp-style AI assistant for Filipino freelancers for ₱112/month

If you're a Filipino developer on Upwork or Fiverr, you've probably done the math.

ChatGPT costs ₱1,120/month. That's roughly 2-3 days of work at Philippine rates just to pay for an AI tool that helps you work faster.

I was frustrated by this. So I built my own solution.

The problem with current AI pricing

The $20/month ChatGPT pricing was designed for Silicon Valley salaries. For a developer in Makati or BGC earning ₱40,000-60,000/month, that's a significant chunk of income.

Even worse — if you're using AI to help write better English for international clients (a very common use case), you need it constantly. It's not a luxury. It's a productivity tool.

What I built

A Telegram-based AI assistant that my clients use for:

  • Writing professional proposals for Upwork/Fiverr bids
  • Reviewing code and suggesting improvements
  • Translating Filipino business context into international English
  • Generating invoice line items and project summaries

Total cost: ₱112/month (that's $2 USD).

The technical setup

const TelegramBot = require('node-telegram-bot-api');
const axios = require('axios');

const bot = new TelegramBot(process.env.TELEGRAM_TOKEN, { polling: true });

bot.on('message', async (msg) => {
  const chatId = msg.chat.id;
  const userMessage = msg.text;

  try {
    const response = await axios.post('https://simplylouie.com/api/chat', {
      message: userMessage
    }, {
      headers: {
        'Authorization': `Bearer ${process.env.LOUIE_API_KEY}`,
        'Content-Type': 'application/json'
      }
    });

    await bot.sendMessage(chatId, response.data.reply);
  } catch (err) {
    await bot.sendMessage(chatId, 'Error: ' + err.message);
  }
});

console.log('Bot running...');
Enter fullscreen mode Exit fullscreen mode

The Upwork proposal generator

This is the killer use case for Filipino freelancers. Here's a prompt template I use:

async function generateProposal(jobDescription, mySkills, hourlyRate) {
  const prompt = `
    Write a professional Upwork proposal for this job:
    ${jobDescription}

    My skills: ${mySkills}
    My rate: $${hourlyRate}/hour

    The proposal should be:
    - Professional but warm
    - Under 250 words
    - Include 2-3 specific questions about the project
    - Show I understand their actual problem
  `;

  const response = await axios.post('https://simplylouie.com/api/chat', {
    message: prompt
  }, {
    headers: {
      'Authorization': `Bearer ${process.env.LOUIE_API_KEY}`
    }
  });

  return response.data.reply;
}

// Example usage
const proposal = await generateProposal(
  'Need React developer for e-commerce dashboard',
  'React, Node.js, MongoDB, 5 years experience',
  25
);
console.log(proposal);
Enter fullscreen mode Exit fullscreen mode

The code review assistant

For freelancers who work across multiple tech stacks (common in the PH market), this is invaluable:

async function reviewCode(codeSnippet, language) {
  const response = await axios.post('https://simplylouie.com/api/chat', {
    message: `Review this ${language} code for bugs, performance issues, and best practices:\n\n${codeSnippet}`
  }, {
    headers: {
      'Authorization': `Bearer ${process.env.LOUIE_API_KEY}`
    }
  });

  return response.data.reply;
}
Enter fullscreen mode Exit fullscreen mode

Real results

After 3 months of using this setup:

  • My Upwork proposal acceptance rate went from ~15% to ~35%
  • Time writing proposals dropped from 45 minutes to 10 minutes
  • Client communication quality improved (less back-and-forth)

The math

Tool Monthly Cost Annual Cost
ChatGPT Plus ₱1,120 ₱13,440
Claude Pro ₱1,680+ ₱20,160+
SimplyLouie ₱112 ₱1,344

That's ₱12,096 saved per year — basically a full month's rent in Pasig or Quezon City.

How to get started

  1. Sign up at simplylouie.com/ph/ — ₱112/month
  2. Get your API key from the dashboard
  3. Clone the bot template above
  4. Set your environment variables
  5. Deploy to Railway or Render (both have free tiers)

The bigger picture

Filipino developers are among the most skilled in the world. The Makati/BGC tech corridor is growing fast. Cebu City is becoming a genuine tech hub. Remote work has opened up global opportunities.

But we're still paying Silicon Valley prices for tools. That's changing.

₱112/month. That's the price of 2 cups of coffee at Starbucks BGC. It should not be a barrier to using AI.

Try it free for 7 days: simplylouie.com/ph/


Built by a developer, for developers. 50% of revenue goes to animal rescue. No tracking, no data selling.

Top comments (0)