@@ -208,6 +208,8 @@ Current provider support:
208208- OpenAI through ` wellplot.agent `
209209- OpenAI-compatible endpoints through ` provider="openai_compat" ` plus
210210 ` base_url=... `
211+ - local Ollama through ` provider="ollama" ` with a default
212+ ` http://localhost:11434/v1 ` base URL
211213
212214Recommended credential setup:
213215- prefer ` OPENAI_API_KEY ` in the shell for OpenAI sessions
@@ -218,6 +220,8 @@ Recommended credential setup:
218220 secret that stays out of version control without editing notebook cells
219221- loopback OpenAI-compatible endpoints such as ` http://localhost:11434/v1 `
220222 receive an automatic placeholder token when no key is configured
223+ - ` provider="ollama" ` is a notebook-facing convenience alias over the same
224+ OpenAI-compatible backend and automatically uses the loopback base URL above
221225
222226The main entry points are:
223227- ` from wellplot.agent import AuthoringSession `
@@ -230,6 +234,8 @@ The main entry points are:
230234Notebook-facing project helpers:
231235- ` create_project_session(...) ` to bootstrap one reusable project-scoped agent session
232236- ` session.add_data_file(...) ` to stage LAS or DLIS sources into the project folder
237+ - ` session.bootstrap_starter(...) ` to stage data, configure default draft/render
238+ paths, and materialize one starter scaffold in one call
233239- ` session.create_starter(...) ` to generate one starter template/logfile pair from a shipped preset
234240- ` session.configure_rounds(...) ` and ` session.configure_paths(...) ` to keep later notebook cells short
235241
@@ -368,7 +374,7 @@ Current examples:
368374- [ examples/notebooks/user/agent_las_step_by_step.ipynb] ( examples/notebooks/user/agent_las_step_by_step.ipynb )
369375 - credentialed end-user walkthrough that bootstraps a project session,
370376 stages a user LAS file, generates a reusable starter scaffold through
371- ` session.create_starter (...) ` , and adds header, remarks, tracks, and
377+ ` session.bootstrap_starter (...) ` , and adds header, remarks, tracks, and
372378 bindings one step at a time through ` wellplot.agent `
373379 - working first-pass agent workflow: functional, but intentionally less
374380 curated than the deterministic production notebooks and may still need
0 commit comments