# Tase > Tase is a voice-first personal assistant for iPhone and the web, with Android and macOS in development. Say it once and it is logged: tasks, goals, spending, meals, medication and notes are captured by voice and kept in one place, with an AI assistant that can act on them. Complete index. The shorter version is at https://tase.app/llms.txt Raw markdown for any content page: append .md to its URL, for example https://tase.app/help/first-steps-after-signup.md Sitemap: https://tase.app/sitemap.xml ## Start here - [Tase](https://tase.app/): Product overview and what Tase does. - [Features](https://tase.app/features): Every capability, grouped by area. - [Why Tase](https://tase.app/why-tase): How Tase differs from note apps, to-do apps and generic chatbots. - [Use cases](https://tase.app/use-cases): Concrete jobs people hire Tase for. - [AI assistant](https://tase.app/ai-assistant): How the assistant captures, recalls and acts on your data. - [Agents](https://tase.app/agents): Background agents that run on a schedule. - [Pricing](https://tase.app/pricing): Plans, limits and what each tier includes. - [Download](https://tase.app/download): Get Tase on iPhone, Mac and the web. - [Security](https://tase.app/security): How data is stored, encrypted and accessed. - [Privacy Policy](https://tase.app/privacy): What is collected and why. - [Terms of Use](https://tase.app/terms-of-use): Terms governing use of Tase. - [FAQ](https://tase.app/faq): Common questions about the product and billing. - [Changelog](https://tase.app/changelog): What shipped, by platform and date. - [Roadmap](https://tase.app/roadmap): What is being built next. - [About](https://tase.app/about): Who builds Tase and why. - [Founder](https://tase.app/about/founder): Why Tase exists, what has shipped, and what a solo founder is betting on. - [Company](https://tase.app/company): The company behind Tase: what it is building, which platforms are live, how to reach it. - [Metrics](https://tase.app/company/metrics): Release cadence, template counts and language coverage, computed from the repository. States plainly which numbers are not published yet. - [Trust](https://tase.app/trust): Security, privacy, legal, subprocessors, status and accessibility in one place, including what Tase is not certified for. - [Status](https://tase.app/status): Current service health. - [Accessibility](https://tase.app/accessibility): Conformance target, what is supported today and the known limitations. - [Contact](https://tase.app/contact): Where to send support, press, security and privacy requests. ## Developer platform - [Tase Platform](https://tase.app/platform): The developer API: an OpenAI-compatible endpoint for Tase models. - [Platform pricing](https://tase.app/platform/pricing): Token pricing and rate limits for the API. - [Elite Mentorship](https://tase.app/mentorship): One-to-one mentorship programme for builders. ## Developer documentation Reference for the Tase API, models and SDKs. - [Developer documentation index](https://tase.app/docs): Reference for the Tase API, models and SDKs. - [Overview](https://tase.app/docs/overview): The Tase API gives you programmatic access to the Tase model through an OpenAI-compatible chat completions endpoint. - [Quickstart](https://tase.app/docs/quickstart): Get an API key, make your first chat completion in curl, JavaScript, or Python, and switch to streaming. - [Authentication](https://tase.app/docs/authentication): How Tase API keys work: the tase_sk_ format, the Authorization header, handling 401 errors, and rotating keys safely. - [Models](https://tase.app/docs/models): The Tase model family: what each model is built for, how to choose one, and how to list available models through the API. - [Tase 8B](https://tase.app/docs/tase-8b): Model card for the Tase 8B family. Current version: tase-0.1-8b, a compact model specialized for tool calling with low latency in Turkish and English. - [Pricing and limits](https://tase.app/docs/pricing-and-limits): How quotas and rate limits work on the Tase API: requests per minute, concurrency, 429 handling with Retry-After, fair use, and usage tracking. - [Benchmarks](https://tase.app/docs/benchmarks): How Tase models are measured on tool calling, and what the current numbers are. - [Chat completions](https://tase.app/docs/chat-completions): Send messages to Tase models and read the response: roles, system prompts, parameters, multi-turn conversations, and token usage. - [Streaming responses](https://tase.app/docs/streaming): Stream chat completions over server-sent events: enable stream mode, parse the SSE wire format, accumulate deltas, handle [DONE], and cancel mid-flight. - [Structured outputs](https://tase.app/docs/structured-outputs): Get reliable JSON from Tase models: JSON mode with response_format, schema instructions in the system message, validation with retries, and when to use tool calling instead. - [Function calling](https://tase.app/docs/function-calling): Connect the Tase model to your own functions: define tools, receive structured tool calls, execute them in your app, and feed results back for a final answer. - [Built-in tools](https://tase.app/docs/built-in-tools): The tool families trained into the Tase model — tasks, health, finance, memory, agents, connections, and world knowledge — and how to use them without sending a single schema. - [Tool use patterns](https://tase.app/docs/tool-use-patterns): Production patterns for tool calling with the Tase API: feeding results back, handling errors and empty results, confirming destructive actions, and running multi-step workflows. - [Create chat completion](https://tase.app/docs/api-chat-completions): Full reference for POST /v1/chat/completions: request body fields, response schema, streaming format, and tool calling examples. - [List models](https://tase.app/docs/api-models): Reference for GET /v1/models: list the model IDs available to your API key and read each model object. - [Errors](https://tase.app/docs/errors): How Tase API errors are shaped, what every HTTP status code means, and how to retry safely with exponential backoff. - [Rate limits](https://tase.app/docs/rate-limits): How Tase API rate limits work: the 429 response, the Retry-After header, backoff, concurrency, and batching strategies. - [Versioning](https://tase.app/docs/versioning): What the /v1 path guarantees: which changes ship without notice, which ones require a new version, and the forward-compatibility rules your client must follow. - [Deprecation policy](https://tase.app/docs/deprecation-policy): How Tase retires an endpoint, field or model: how deprecation is announced, what the deprecation window looks like, and what happens to traffic after sunset. - [API changelog](https://tase.app/docs/api-changelog): The dated record of every change to the Tase API: additions, behaviour changes, deprecations and sunset dates. - [SDKs and libraries](https://tase.app/docs/sdks): Call the Tase API from JavaScript, Python, Swift, or plain curl. No dedicated SDK required — any OpenAI-compatible client works with a base URL change. - [Build an assistant with tools](https://tase.app/docs/cookbook-assistant): An end-to-end tool-calling loop in Node.js: take a user message, let the model call your functions, feed results back, and return the final answer. - [Structured data extraction](https://tase.app/docs/cookbook-extraction): Turn free-form text into validated JSON: describe the schema in the system message, parse defensively, and retry once with the error fed back. - [Migrating to Tase](https://tase.app/docs/migrating): Move an existing OpenAI-compatible integration to the Tase API: change the base URL, the key, and the model name — everything else stays. ## Help center Task-level answers for people using the app. - [Help center index](https://tase.app/help): Task-level answers for people using the app. - [How to create your Tase account](https://tase.app/help/how-to-create-your-account): Sign up for Tase in under a minute. Choose email, Google, or Apple sign-in, then verify and you are ready to go. - [First steps after you sign up](https://tase.app/help/first-steps-after-signup): The five things to do in your first ten minutes with Tase: enable notifications, create a task, try voice, set a budget, and add a memory. - [How to upgrade to Pro or Max](https://tase.app/help/how-to-upgrade-to-pro-or-max): Upgrade to Pro ($9.99/month or $79.99/year) or Max ($19.99/month or $199.99/year) from Settings. Apple handles billing through your App Store account. - [How to cancel or downgrade your plan](https://tase.app/help/how-to-cancel-or-downgrade): Cancel anytime from Settings or the App Store. You keep premium features through the end of your current billing cycle. - [Voice mode is not responding](https://tase.app/help/voice-mode-not-responding): If Tase is not hearing you or the voice orb stays silent, work through these checks: microphone permission, connection, and audio routing. - [How to use voice mode in the car](https://tase.app/help/how-to-use-voice-in-the-car): Tase works with CarPlay so you can capture tasks and log expenses without looking at your phone. Here is how to set it up and stay safe. - [What is the AI Brain?](https://tase.app/help/what-is-the-ai-brain): The AI Brain is your personal knowledge base inside Tase. It holds notes, ideas, knowledge, prompts, and memories so every answer is tailored to you. - [How to edit or delete a memory](https://tase.app/help/how-to-edit-or-delete-a-memory): Memories are not permanent records. Open the Brain, find the memory, and edit the text or remove it entirely. Tase updates immediately. - [How to set a monthly budget](https://tase.app/help/how-to-set-a-budget): Create a budget in the Finance tab, pick a monthly limit, and let Tase track every expense against it automatically. - [How to log an expense](https://tase.app/help/how-to-log-an-expense): Log spending in seconds by voice, by typing, or from a task reward. Every expense counts against your budget automatically. - [How to set medication reminders](https://tase.app/help/how-to-set-medication-reminders): Never miss a dose. Add a medication in the Health tab, set the schedule, and Tase reminds you with the right dose at the right time. - [How to track a habit](https://tase.app/help/how-to-track-a-habit): Build streaks that stick. Create a habit, set how often, and check it off each day by voice or tap. - [How to create a task by voice](https://tase.app/help/how-to-create-a-task-by-voice): Say it and it is captured. Tap the voice button, tell Tase what you need, and it becomes a task with a due date automatically. - [How to break a goal into tasks](https://tase.app/help/how-to-break-a-goal-into-tasks): A goal without steps is a wish. Create a goal, add milestones, and convert them into tasks so progress happens one action at a time. - [What are agents?](https://tase.app/help/what-are-agents): Agents are background assistants that run multi-step jobs for you, like research or drafting. Available on Max. - [How to stop a running agent](https://tase.app/help/how-to-stop-a-running-agent): Changed your mind? Open the agents view, find the running job, and tap Stop. The agent halts and partial work is discarded. - [Where is my data stored?](https://tase.app/help/where-is-my-data-stored): Your Tase data lives in encrypted cloud storage with industry-standard security. You own it, you control it, and you can export or delete it anytime. - [How to export or delete your data](https://tase.app/help/how-to-export-or-delete-your-data): Request a full data export or permanently delete your account and everything in it, right from Settings. - [The app will not open or crashes](https://tase.app/help/app-wont-open-or-crashes): If Tase crashes on launch or mid-use, work through these steps: force-quit, update, restart, and reinstall. Most crashes resolve in the first two. - [Sync issues between devices](https://tase.app/help/sync-issues-between-devices): If changes on one device do not appear on another, the cause is usually a connection or account mismatch. Here is how to diagnose and fix it. ## Tutorials Step-by-step guides for a single workflow. - [Tutorials index](https://tase.app/learn): Step-by-step guides for a single workflow. - [Plan your week with a brain dump](https://tase.app/learn/plan-your-week-with-a-brain-dump): A ten-minute Sunday ritual: speak everything on your mind, let Tase sort it into tasks, goals, and notes, then shape the week in one five-minute review. - [Set a budget and actually keep it](https://tase.app/learn/set-a-budget-and-actually-keep-it): Create a monthly budget in Tase, log spending in two-second voice entries, and check what is left by asking. The version of budgeting that survives real life. - [Track workouts without breaking flow](https://tase.app/learn/track-workouts-without-breaking-flow): Log sets and reps by voice between exercises, run rest timers hands-free, and review progress over weeks. Workout tracking that does not interrupt the workout. - [Remember everything people tell you](https://tase.app/learn/remember-everything-people-tell-you): Save the facts people share, sizes, allergies, preferences, names, into your AI Brain by saying them once, then recall any of it months later by asking. - [Capture a task by voice](https://tase.app/learn/capture-a-task-by-voice): Say a task out loud and Tase turns it into a real to-do with the right due date. This walkthrough shows the exact phrases that work and how to confirm the task landed. - [Set up medication reminders](https://tase.app/learn/set-up-medication-reminders): Schedule your medications and supplements in Tase so doses arrive on time, every day. Covers adding a med, setting the cadence, and confirming a dose once you take it. - [Break a goal into tasks](https://tase.app/learn/break-a-goal-into-tasks): Turn a measurable goal into schedulable tasks so progress moves on its own. This walkthrough shows the full loop: define the goal, attach tasks, watch the progress bar advance. - [Track an expense in seconds](https://tase.app/learn/track-an-expense-in-seconds): Log spending fast enough that you actually do it every time, and watch your budgets update instantly. Covers quick entry, budget feedback, and editing a mistake. - [Use the AI Brain to remember](https://tase.app/learn/use-the-ai-brain-to-remember): The AI Brain is your personal knowledge base: notes, ideas, knowledge, and memories. Learn what each section is for and how memories get extracted automatically from your conversations. - [Connect your calendar and mail](https://tase.app/learn/connect-your-calendar-and-mail): Let Tase act on your calendar and inbox through connectors. This intermediate walkthrough covers what agents can do once mail and calendar are linked, and how to stay in control. - [Talk to Tase hands-free in the car](https://tase.app/learn/talk-to-tase-hands-free-in-the-car): Use Tase with CarPlay so you can capture tasks, check your day, and ask questions without touching your phone. Covers setup, the wake interaction, and what works while driving. - [Log calories and meals quickly](https://tase.app/learn/log-calories-and-meals-quickly): Track what you eat without turning every meal into data entry. Covers fast logging, editing an entry, and checking your daily total as the day goes on. ## Features What each capability does, how it is used, and where it runs. - [Features index](https://tase.app/features): What each capability does, how it is used, and where it runs. - [Voice AI Chat](https://tase.app/features/voice-ai-chat): Talk to Tase and it answers in real time, hands free. Ask a question, log a meal, add a task, or think out loud — and every session teaches it more about you. - [Deploy Agents](https://tase.app/features/deploy-agents): Hand a task to an autonomous agent and get on with your day. It works through visible steps using your own data, then reports back — or acts on your behalf if you let it. - [AI Brain](https://tase.app/features/ai-brain): Notes, ideas, knowledge and memories in one place that an assistant can actually reason over. Drop in a PDF or a link and Tase reads it and files what matters. - [Tasks and Rewards](https://tase.app/features/task-management): Say what needs doing and it becomes a task. Recurring schedules, subtasks and reminders included — plus a reward you actually want at the end of it. - [Health Tracking](https://tase.app/features/health-tracking): Medications, supplements, injections, calories, sleep, workouts, labs and hydration in one place — logged by voice, and connected to everything else you track. - [Finance Tracking](https://tase.app/features/finance-tracking): Expenses, income, budgets, recurring payments and connected accounts — so the question "can I afford this" has an answer that takes one sentence. - [Goals](https://tase.app/features/goal-setting): Turn something you want into a path you can actually walk: milestones, a progress number that means something, and daily tasks that connect back to it. - [Habits and Streaks](https://tase.app/features/habits-streaks): Daily and weekly habits with a streak that updates as you check in, and a weekly view that shows the pattern rather than just the number. ## Use cases Whole jobs people hire Tase to do, start to finish. - [Use cases index](https://tase.app/use-cases): Whole jobs people hire Tase to do, start to finish. - [Run a whole company from one thread](https://tase.app/use-cases/run-a-company-from-one-thread): Standups, burn, hiring, the next three things — Tase files them as you talk and recalls them when you ask. Then deploy an agent to do the heavy reading while you stay in the build. - [Training, nutrition, and labs in one body of data](https://tase.app/use-cases/training-nutrition-and-labs): Workouts, supplements, calories, sleep, and lab results live together — so patterns actually surface instead of scattering across five apps. - [Finally see where the money goes](https://tase.app/use-cases/see-where-the-money-goes): Link an account and transactions import themselves. Budgets track live, income and investments sit beside them, and the answer is one question away. - [A second brain that actually remembers](https://tase.app/use-cases/a-second-brain-that-remembers): Feed it PDFs and URLs. Tase reads them, files what matters, and learns across every conversation — so semantic search and vector recall surface the right note weeks later, in your words, not a keyword match. - [Offload the mental load](https://tase.app/use-cases/offload-the-family-mental-load): The running list in your head — appointments, errands, the small daily things — captured by voice the moment you think of it, before it slips. - [Deploy an agent and walk away](https://tase.app/use-cases/hand-off-work-to-an-agent): Autonomous agents, built from templates, take a task and work it end to end — using your Brain for context — then report back. Pick one up whenever you’re ready. ## Systems Ready-made setups that install goals, tasks, habits, budgets and automations together. - [Systems index](https://tase.app/systems): Ready-made setups that install goals, tasks, habits, budgets and automations together. - [TRT Protocol](https://tase.app/systems/trt-protocol): A ready-made testosterone therapy system: injection schedule, quarterly bloodwork, doctor reviews, daily medication habits and a budget line for labs — installed into Tase in one tap. - [Freelancer Finance](https://tase.app/systems/freelancer-finance): An income system for lumpy freelance months: a runway goal, a tax set-aside goal, invoicing and chasing tasks, three budget categories and automations that move money aside the moment it lands. - [Marathon Plan](https://tase.app/systems/marathon-plan): A marathon training system for Tase: weekly long run with a fuelling checklist, recovery runs, strength work, a mileage planning task, three recovery habits and a gear budget. - [Founder OS](https://tase.app/systems/founder-os): An operating system for running a startup solo: a ramen-profitability goal, a runway goal, four weekly rituals, three deep-work habits, three burn categories and automations that credit runway when revenue lands. - [Sleep Reset](https://tase.app/systems/sleep-reset): A two-week sleep system: a consistent-schedule goal, a nightly alarm task, a weekly review with a three-step checklist, and four habits covering wind-down, screens, morning light and caffeine. - [Bulk / Cut](https://tase.app/systems/bulk-cut): A body-composition phase in one install: a push/pull/legs split, a weekly check-in with weigh-in and progress photo, three daily nutrition habits, and supplement plus grocery budget lines. ## Solutions How Tase fits a particular kind of person or work. - [Solutions index](https://tase.app/solutions): How Tase fits a particular kind of person or work. - [Tase for Students: Capture Every Class, Hit Every Deadline](https://tase.app/solutions/for-students): A voice-first assistant that turns lecture notes, reading, and deadlines into an organized system. Built for students who juggle classes, work, and life. - [Tase for Busy Professionals: Capture, Schedule, and Send by Voice](https://tase.app/solutions/for-professionals): A voice-first assistant for professionals who lose hours to context switching. Capture tasks, manage calendar, and draft mail without breaking flow. - [Tase for Founders: An AI Brain That Carries Your Whole Company](https://tase.app/solutions/for-founders): A voice-first assistant with a memory. Founders capture decisions, track burn and goals, and ship faster with an AI Brain that holds company context. - [Tase for Health: Medications, Vitals, and Habits in One Place](https://tase.app/solutions/for-health-tracking): A voice-first health tracker. Log medications, vitals, and habits by speaking. See patterns across your data instead of scattering it across five apps. - [Tase for Personal Finance: Spending, Budgets, and Income Without Spreadsheets](https://tase.app/solutions/for-personal-finance): A voice-first money tracker. Log spending, set budgets, and track income by speaking. Ask where your money went and get a real answer. - [Tase for Parents: Household Tasks, Reminders, and Family Coordination](https://tase.app/solutions/for-parents): A voice-first assistant for parents carrying the mental load. Capture appointments, errands, and routines by voice before they slip. - [Tase for ADHD: Capture First, Organize Never](https://tase.app/solutions/for-adhd): A voice-first assistant built for how ADHD brains actually work. Two-second capture, automatic sorting, reminders that resurface things at the right moment. ## Comparisons How Tase compares to other tools, including where the other tool is the better choice. - [Comparisons index](https://tase.app/compare): How Tase compares to other tools, including where the other tool is the better choice. - [Tase vs ChatGPT: A Personal Assistant That Files Things, Not Just Answers](https://tase.app/compare/tase-vs-chatgpt): An honest comparison of Tase and ChatGPT. ChatGPT is a general-purpose AI you talk to. Tase is a voice-first assistant that turns what you say into tasks, expenses, meds, and goals inside your own app. - [Tase vs Todoist: A Task Manager, or an Assistant That Files the Task for You](https://tase.app/compare/tase-vs-todoist): An honest comparison of Tase and Todoist. Todoist is a mature, focused task manager. Tase is a voice-first assistant where a spoken sentence becomes a task, and tasks sit next to your money, health, and goals. - [Tase vs Habitica: Gamified Habits, or Habits Inside the Rest of Your Life](https://tase.app/compare/tase-vs-habitica): An honest comparison of Tase and Habitica. Habitica turns habit building into a role-playing game. Tase tracks habits, medications, and workouts by voice, next to your tasks, money, and goals. - [Tase vs YNAB: A Budgeting Method, or Spending Captured As You Live It](https://tase.app/compare/tase-vs-ynab): An honest comparison of Tase and YNAB. YNAB is a rigorous budgeting method with a devoted following. Tase logs spending by voice in the moment, alongside your tasks, health, and goals. - [Tase vs Notion: A Workspace You Build, or a Brain That Fills Itself](https://tase.app/compare/tase-vs-notion): An honest comparison of Tase and Notion. Notion is a flexible workspace you design yourself. Tase is a voice-first assistant with an AI Brain that captures notes and context without you building a system first. - [Tase vs Otter: A Transcript of What Was Said, or an Action From It](https://tase.app/compare/tase-vs-otter): An honest comparison of Tase and Otter. Otter is built to capture and transcribe meetings accurately. Tase is built so a spoken sentence becomes a task, an expense, or a reminder in your own app. - [Tase vs Siri: The Assistant in the Phone, and the One That Keeps the Record](https://tase.app/compare/tase-vs-siri): An honest comparison of Tase and Siri. Siri is the system assistant built into the device you are holding. Tase is a voice-first app with a second brain, agent templates, and one record of your tasks, goals, health, and money. - [Tase vs Apple Reminders: The List, and the Thing That Fills It](https://tase.app/compare/tase-vs-apple-reminders): An honest comparison of Tase and Apple Reminders. Reminders is wired into every Apple device you own. Tase is a voice-first assistant that turns a messy spoken sentence into filed work, and it connects to Apple Reminders on iPhone. - [Tase vs Apple Notes: A Place to Put Things, or Something That Reads Them](https://tase.app/compare/tase-vs-apple-notes): An honest comparison of Tase and Apple Notes. Apple Notes is the fastest place on an iPhone to put a thought. Tase is a voice-first assistant whose second brain understands what the thought was about and brings it back later. - [Tase vs Google Keep: Fast Capture, and What Happens After It](https://tase.app/compare/tase-vs-google-keep): An honest comparison of Tase and Google Keep. Keep is built for getting something out of your head in two seconds, on any device. Tase is a voice-first assistant that understands what you captured and files it where it belongs. - [Tase vs MyFitnessPal: A Food Log, or a Record of the Whole Day](https://tase.app/compare/tase-vs-myfitnesspal): An honest comparison of Tase and MyFitnessPal. Dedicated nutrition trackers are built for precise food logging. Tase is a voice-first assistant that keeps health, tasks, money, and goals in one record you can talk to. - [Tase vs Monarch Money: The Household Ledger, and the Spoken One](https://tase.app/compare/tase-vs-monarch-money): An honest comparison of Tase and Monarch Money. Dedicated personal finance platforms are built around connected accounts and net worth. Tase is a voice-first assistant where money sits in the same record as your tasks, health, and goals. ## Connectors Services Tase can read from and write to. - [Connectors index](https://tase.app/connectors): Services Tase can read from and write to. - [Gmail](https://tase.app/connectors/gmail): Tase reads your inbox, drafts replies in your voice, and can act on mail so you stop drowning in unread messages. - [Google Calendar](https://tase.app/connectors/google-calendar): Tase sees your schedule, protects your focus time, and helps you plan the week without a back-and-forth with your calendar tab. - [Google Drive](https://tase.app/connectors/google-drive): Tase finds and summarizes your documents so you stop hunting for the file that has the answer you already wrote down. - [Apple Reminders](https://tase.app/connectors/apple-reminders): Tase syncs tasks with Reminders so the list on your phone and the list in your head stay in the same place. - [Apple Health](https://tase.app/connectors/apple-health): Tase reads health metrics so its advice is grounded in how you are actually sleeping, moving, and recovering. - [Notion](https://tase.app/connectors/notion): Tase reads and updates your Notion so your second brain stays current without you opening it to type. - [Slack](https://tase.app/connectors/slack): Tase triages messages and summarizes channels so you come back to Slack caught up instead of overwhelmed. - [Wallet and Banking](https://tase.app/connectors/wallet-and-banking): Tase tracks spending and balances so you know where your money is without logging into five apps to find out. ## Blog Longer writing on capture, memory and daily systems. - [Blog index](https://tase.app/blog): Longer writing on capture, memory and daily systems. - [A Brain Dump System That Actually Works for ADHD Minds](https://tase.app/blog/adhd-brain-dump-system): Most brain dump advice fails ADHD brains at the same step: retrieval. Here is a capture-first system that survives busy weeks, plus the exact routine to run it. - [The Best Way to Remember to Take Medication, According to How Habits Actually Work](https://tase.app/blog/best-way-to-remember-to-take-medication): Around half of long-term medications are not taken as prescribed. The fix is not more willpower. It is anchoring, honest reminders, and streak forgiveness. - [Voice Expense Tracking: The Two-Second Fix for Budgets That Never Stick](https://tase.app/blog/voice-expense-tracking): Expense tracking fails at the entry step, not the spreadsheet step. Logging by voice cuts a 40-second chore to 2 seconds, and that changes everything downstream. - [A Second Brain for Normal People: No Folders, No Methodology, No Sunday Maintenance](https://tase.app/blog/second-brain-for-normal-people): You do not need PARA, Zettelkasten, or a wiki to stop forgetting things. A useful second brain has two verbs: say it once, ask for it later. Here is the simple version. - [Too Many Apps: Why Your Life Admin Is Scattered Across Five Subscriptions](https://tase.app/blog/too-many-apps-life-admin): A todo app, a budget app, a meds app, a habit app, a notes app. Each one is fine. Together they fail, and the reason is switching cost. The case for one surface. - [AI Assistant Privacy: 6 Questions to Ask Before You Tell It Everything](https://tase.app/blog/ai-assistant-privacy-what-to-ask): An AI assistant is only useful if you can be honest with it. Here are the six privacy questions that matter, what good answers look like, and how to check them. - [How to Break a Big Goal Into Tasks You Will Actually Do](https://tase.app/blog/goal-breakdown-system): Big goals stall because they are too vague to act on. The trick is turning one abstract goal into a stream of small, schedulable tasks. - [A Medication Reminder App You Will Not Ignore](https://tase.app/blog/medication-reminder-that-works): A reminder you dismiss and forget is no reminder at all. The right system makes taking your meds the easiest option. Here is what actually works. - [Budgeting Without Spreadsheets: Tracking Spending That Sticks](https://tase.app/blog/budgeting-without-spreadsheets): Budgets fail because logging each expense is tedious. The right system makes tracking almost invisible. Here is how to build a money habit that lasts. - [Voice-First: Why Speaking to Your Assistant Beats Typing](https://tase.app/blog/voice-first-beyond-chatbots): Typing is a bottleneck. Voice is the fastest path between a thought and an action. Here is why voice-first is the right default for a personal assistant. - [The AI Brain: An Assistant That Actually Remembers You](https://tase.app/blog/ai-brain-personal-memory): A chatbot forgets you the moment the conversation ends. A real assistant remembers. Here is how a personal memory changes what an AI can do for you. - [The Capture Gap: Why Most Task Apps Quietly Fail](https://tase.app/blog/the-capture-gap): The best to-do app is not the one with the most features. It is the one that captures the task before you forget it. Here is why most apps lose that race. - [How to Build a Habit-Tracking System That Actually Sticks](https://tase.app/blog/how-to-build-a-habit-tracking-system-that-sticks): Most habit trackers fail because they add friction. Here is a simpler way to build a system that survives busy weeks and keeps you honest. - [Voice-to-Task Capture: Turn Anything You Say Into a To-Do](https://tase.app/blog/voice-to-task-capture): The tasks you lose are the ones you think of at the wrong moment. Capturing them by voice closes the gap between having a thought and saving it. ## Research Methodology notes and product research. - [Research index](https://tase.app/research): Methodology notes and product research. - [Voice as the Right Default: Why a Personal Assistant Should Speak and Listen](https://tase.app/research/voice-as-the-right-default): Text is a legacy interface for a personal assistant. Voice is the right default for most interactions, not because it is more impressive, but because it matches how thoughts actually form and when help is actually needed. - [Act, Do Not Just Answer: The Case for an Assistant That Takes Action](https://tase.app/research/act-dont-just-answer): A chatbot tells you how to do something. An agent does it for you. The difference sounds small in a demo and is enormous in practice. Here is why action, not text, is the real threshold for a useful assistant. - [Designing Personal Memory: What an AI Should Remember, Forget, and Let You Correct](https://tase.app/research/designing-personal-memory): A personal AI memory is not a database of everything you ever said. It is a curatorial system that decides what is worth holding onto, what should expire, and how you stay in control of what it thinks it knows about you. - [The Capture Gap: Why Most Task Systems Fail at Step Zero](https://tase.app/research/the-capture-gap): Every task manager obsesses over organization. Almost none solve the moment that actually decides whether a task exists at all: the instant you think of it. Closing that gap is the highest-leverage habit in personal productivity. ## News Announcements and milestones. - [News index](https://tase.app/news): Announcements and milestones. - [Tase introduces Pro and Max plans](https://tase.app/news/pro-and-max-plans): Tase now offers two paid plans. Pro is $9.99 a month or $79.99 a year, and Max is $19.99 a month or $199.99 a year, each built for a different level of use. - [Tase is now available in 39 languages](https://tase.app/news/thirty-nine-languages): Tase now speaks 39 languages, so the assistant, the interface, and the tasks it captures can work in the language you actually think in. - [Tase can now run background agents that take action for you](https://tase.app/news/deploy-agents-automation): Tase agents work in the background to carry out real tasks on your behalf, like researching, organizing, and following up, so the work gets done without you babysitting it. - [Tase is now on the web at tase.app](https://tase.app/news/tase-app-web-launch): The Tase personal assistant is no longer just on your phone. You can now use Tase from any browser at tase.app, with the same assistant, memory, and tasks everywhere. - [Tase LLC formed in Houston, Texas](https://tase.app/news/tase-llc-launch): Tase is now a formal company. Tase LLC was formed in Houston, Texas as the legal home for the Tase personal assistant and everything we build next. ## Case studies Composite case studies, not named customers. - [Case studies index](https://tase.app/customers): Composite case studies, not named customers. - [The solo founder who stopped holding context in their head](https://tase.app/customers/the-busy-founder): A composite portrait of a founder juggling product, sales, and life, and how voice capture plus an AI Brain help them keep every thread moving. - [The parent who keeps a household and a job in one place](https://tase.app/customers/the-working-parent): A composite portrait of a parent balancing work and family, and how shared tasks, medication reminders, and quick voice capture keep the household running. - [The grad student turning a thesis into weekly tasks](https://tase.app/customers/the-grad-student): A composite portrait of a graduate student managing research and deadlines, and how goal breakdown, knowledge notes, and deadline tasks keep a long project moving. - [The professional tracking health and money in the same place](https://tase.app/customers/the-health-focused-professional): A composite portrait of a professional managing vitals, habits, and a budget together, and how one place for all of it keeps the picture whole. ## Careers Open roles. - [Careers index](https://tase.app/careers): Open roles. - [Senior iOS Engineer](https://tase.app/careers/senior-ios-engineer): Own the SwiftUI experience that millions of conversations will flow through. Build the voice interface, the Liquid Glass UI, and the on-device systems that make Tase feel instant. - [AI Engineer](https://tase.app/careers/ai-engineer): Design the agent loops, memory systems, and model orchestration that let Tase actually understand and help a single person over time. - [Product Designer](https://tase.app/careers/product-designer): Own the Tase interaction model end to end. Shape how a voice-first assistant should feel, look, and behave across every screen. - [Growth Marketer](https://tase.app/careers/growth-marketer): Own content, SEO, and distribution for Tase. Help people who need a real assistant actually find one. - [Founding Engineer](https://tase.app/careers/founding-engineer): An early-stage generalist who wants to wear many hats. Build across the stack, shape the product, and help define the engineering culture from the ground up.