Commit History

Improve streaming markdown rendering
e0198de

ape-dev commited on

Revert "Switch streaming to a cumulative snapshot protocol"
d82187d

ape-dev commited on

Switch streaming to a cumulative snapshot protocol
7e43ae1

ape-dev Claude Opus 4.8 commited on

Update standup: react-markdown migration
4e1ac75

ape-dev Claude Opus 4.8 commited on

Replace regex markdown renderer with react-markdown + remark-gfm
3c5f882

ape-dev Claude Opus 4.8 commited on

Keep streamed answer on screen while canonical history loads
f344530

ape-dev Claude Opus 4.8 commited on

Recreate PROJECT_STANDUP.md with streaming-session summary
f912c4a

ape-dev Claude Opus 4.8 commited on

Extract streaming render to a tested module; buffer open code fences
ef99e21

ape-dev Claude Opus 4.8 commited on

Hide a table's header row until its separator arrives
5078485

ape-dev Claude Opus 4.8 commited on

Render streaming line by line so markdown syntax never shows
f040ba9

ape-dev Claude Opus 4.8 commited on

Batch streaming repaints with requestAnimationFrame
d42219c

ape-dev Claude Opus 4.8 commited on

Reapply "Render streaming markdown block by block (kills the mid-stream snap)"
d47a4d9

ape-dev commited on

Reapply "Stream raw markdown like a chat assistant (drop the JSON envelope)"
6551324

ape-dev commited on

Revert "Stream raw markdown like a chat assistant (drop the JSON envelope)"
ebd2400

ape-dev commited on

Revert "Render streaming markdown block by block (kills the mid-stream snap)"
592d062

ape-dev commited on

Render streaming markdown block by block (kills the mid-stream snap)
bc87e42

ape-dev Claude Opus 4.8 commited on

Stream raw markdown like a chat assistant (drop the JSON envelope)
74d93fe

ape-dev Claude Opus 4.8 commited on

Fix all cache/staleness issues from UCB liveness audit; chat chip shows LIVE selected-strategy score
11f916c

ape-dev Claude Opus 4.8 commited on

Compute selection score LIVE (remove cache). Admin bandit-state + cognitive-facet displays now compute avg + c*width*sqrt(2 lnN/count) on demand from current config instead of reading stored cached_ucb; refresh_cell_ucb_cache is now a no-op. Score reflects c/width changes and data instantly, no stale cache
55e72b1

ape-dev commited on

Add adaptive router research section
97aba68

ape-dev commited on

Fix admin edit delete for paused config rows
4dfcfe8

ape-dev commited on

Fix research explainer text spacing
4fb3359

ape-dev commited on

Polish research explainer spacing
60c8a4d

ape-dev commited on

Add selection score explainer to research tab
59ba82f

ape-dev commited on

Clarify bandit selection score labels
78edbde

ape-dev commited on

Refresh admin UI styling
50b69ba

ape-dev commited on

Gate bandit rewards by signal consumers
15f640b

ape-dev commited on

Add intent strategy mapping safeguards
1689b17

ape-dev commited on

Align strategy formats with MVP1 model
47b2615

ape-dev commited on

Implement DB-first strategy format flow
2d1e9b1

ape-dev commited on

Normalize table rendered format labels
3ecff5c

ape-dev commited on

Repair bullet contrast table drift
e12cbf4

ape-dev commited on

Use active instructions for synthesis
ce221e8

ape-dev commited on

Research tab: add RL family-tree categorization primer (umbrella -> bandit -> contextual [we are here] / full RL -> RLHF), the one-question axis table, and plain-language where-we-fit. Makes the taxonomy understandable to anyone
0108242

ape-dev commited on

Research tab: promote bandit-menu-vs-generation-space to a highlighted callout with expanded context (why hard / how field bridges / where we sit)
d85bcf7

ape-dev commited on

Research tab: add Who-uses-what industry usage table (Yahoo/Netflix/Spotify/MS/Google/Meta/LLM labs -> method -> use case) in Industry-context section
0c7d500

ape-dev commited on

Research tab: add Recommendation section — verdict (hybrid UCB+agent+critic is best for us) with per-alternative ranking and concrete first move
9b270bb

ape-dev commited on

Research tab: add prominent Our-unique-approach banner — the bandit x agent-memory x critic fusion (with why each piece is needed)
d49d5c0

ape-dev commited on

Research tab: add Agentic path lane (profile/reflection/orchestrator/critic with wiring into existing orchestrator + cognitive-facet analytics), agentic-vs-reward-model comparison, Industry-context section, and agentic + LLM-personalization papers (Generative Agents, Reflexion, MemGPT, ReAct, Personalized/Rewarded Soups, RouteLLM, sycophancy)
51fec9b

ape-dev commited on

Research tab: add Which-method-when guide (greedy/UCB/Thompson/contextual/contextual-TS/dueling/RLHF) with problem statement + when-to-use + fit-for-us, a 4-step decision flow, and contextual-TS + TS-tutorial + Chapelle&Li papers. Clarifies we are not UCB-only and the correct method per sub-problem
5a8972a

ape-dev commited on

Add dedicated Research admin tab: validated paper library (foundations->RLHF frontier), Now->Goal flow diagram with data+formula per stage, evolution roadmap to the RLHF preference-brain goal. Move research out of UCB Formula tab (now a focused tuner)
32ab39a

ape-dev commited on

UCB tab: add Advanced & latest research section (Slivkins monograph, dueling-bandits survey, Nash-from-Human-Feedback, delayed-feedback, applications survey) with app-relevant plain summaries
4ba12b1

ape-dev commited on

UCB tab: plain-English paper summaries, why-classics-are-old note, and a Recent research (2018-2021) section (NeuralUCB, Neural Thompson, Beyond-UCB, IDS)
d4264a4

ape-dev commited on

Add UCB research basis + paper links and conclusion to the UCB Formula admin tab
638de34

ape-dev commited on

Add admin UI to tune the UCB formula live (c + reward range width). New /config/ucb GET+POST, bandit_config/ucb stored in Mongo + audited, applied to the live selector without redeploy; UCB Formula tab in admin. selection.py reads live params via get_ucb_params
2895b1a

ape-dev commited on

Set UCB exploration constant c back to 1.0 (textbook-balanced)
cda53e2

ape-dev commited on

Add explicit UCB exploration constant c=0.25 (hardcoded, not env): ucb = avg + c*4*sqrt(2*lnN/count). c=1 was too explore-heavy for sparse feedback (winner picked ~45%); c=0.25 commits faster (~70%)
7898628

ape-dev commited on

Scale UCB exploration bonus by reward range width: ucb = avg + 4*sqrt(2*lnN/count). Rewards span [-2,+2] (width 4); textbook UCB1 assumes width 1, so prior bonus under-explored 4x. Applied in compute_ucb + refresh_cell_ucb_cache
8275f2b

ape-dev commited on

Fix round-robin stuck on one strategy: pin bandit domain to APE_DOMAIN so cells key on (user, intent); LLM domain guess was unstable and fragmented cells
738f453

ape-dev commited on

Revert TinyLlama backend; keep only the topic-disable change
f946f7d

ape-dev Claude Fable 5 commited on