Skip to content

IbrahimShaqqou/Alto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alto

Alto is a chat-driven planner that re-times income, bills, subscriptions, and payments on a calendar to reduce overdrafts/fees and improve credit utilization.
This repo currently includes the Agents Service (FastAPI) that returns a deterministic Plan you can animate in the UI.

What’s here (MVP)

  • Agents Service (services/agents):
    • POST /orchestrate/plan – takes user state + intent → returns a Plan {changes[], metrics{}, explain[]}.
    • POST /ingest/plaid-transform – converts Plaid transactions/sync JSON → our agent payload (cashIn/cashOut/policy).
    • GET /health – health check.

UI/DB work is intentionally barebones and can be built by teammates against these contracts.


Quick start (local)

# From repo root
python -m venv .venv && source .venv/bin/activate
pip install -r services/agents/requirements.txt

# Run
uvicorn services.agents.app.main:app --host 0.0.0.0 --port 8080 --reload

## ADK / OpenRouter (optional)
To enable LLM-powered explanations (planner remains deterministic):

```bash
USE_ADK=true \
EXPLAIN_PROVIDER=openrouter \
OPENROUTER_API_KEY=sk-*** \
OPENROUTER_BASE_URL=https://openrouter.ai/api/v1 \
OPENROUTER_HTTP_REFERER=http://localhost:3000 \
OPENROUTER_APP_TITLE=Alto \
EXPLAIN_MODEL=google/gemini-2.5-flash \
EXPLAIN_TEMPERATURE=0.2 \
uvicorn services.agents.app.main:app --port 8080 --reload

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages