Your first hour
This page picks up where Quickstart stops, so it assumes you have a client connected and one note stored. None of it has to be done in order, but doing it in order is the fastest way to find out whether aizk is worth keeping.
You talk to your assistant the whole time. The tool calls shown are what it sends on your behalf, and you never type them yourself.
Store a brief worth recalling
Section titled “Store a brief worth recalling”Start with the thing you would otherwise explain to a new teammate. One project, its purpose, the choices already made, and the reasons behind them.
aizk.keep(text="""# Assay validation
#project: Assay validation#area: Research
- part_of [Area] Research- has_status [Status] Active
We validate the new binding assay before the summer run. We picked the plate reader over theimaging rig because the imaging rig cannot hold temperature for a nine hour plate.""")Two things are happening. The prose is what recall will hand back later, and the tagged lines attach the note to named things so related notes find each other. Entities, facts, ontology explains the tag syntax and what kinds are available, and you can safely skip all of it and write plain prose while you are starting out.
Keep it to one topic. If you find yourself writing about a second project halfway down, that is a second call. Writing memory well covers where the line is.
Ask it back in your own words
Section titled “Ask it back in your own words”Ask straight away, because a text note is searchable as soon as the call returns. Use words you did not write verbatim.
aizk.find(query="why did we choose the plate reader for the assay?")You should get your own sentence back, labeled as a source excerpt. Derived items take longer to appear, because the statements aizk pulls out of your text are built in the background after the call returns. They exist to help find the right note faster, and sources always outrank them. Sources and derived knowledge explains why both exist.
Add a real document
Section titled “Add a real document”A URL is enough. Pass it and no text, and aizk fetches the page or file, scans it, keeps the exact original, and converts it into something recallable.
aizk.keep(source_uri="https://example.org/binding-assay-protocol.pdf")This one comes back queued rather than done, because conversion happens in the background. A large PDF takes a while, and the note becomes recallable when conversion finishes rather than instantly. Files, PDFs and web sources covers the size limits and what happens when a file cannot be converted.
Check where you can write
Section titled “Check where you can write”Before the first shared write in a session, your assistant should call status. It returns who you
are and every organization you belong to, each with a writable flag that says whether you may add
to it.
aizk.status(days=30)Write something into the team
Section titled “Write something into the team”Now write a note the team actually needs, straight into the team scope rather than privately.
aizk.keep( text="# Plate reader booking\n\nThe reader is booked Tuesdays and Thursdays for the assay run through August.", scopes=["Research Lab"],)Naming one organization puts it in that team’s memory. Naming two produces a note only people in both can read, which is narrower than either one and not wider. Scopes is the full model, and Sharing and organizations is the practical side.
If you have something private that turns out to be worth sharing, share copies it into a team
scope using the ID keep gave you. It makes a snapshot rather than moving the note, so your
private copy stays yours and later edits to it do not travel.
Correct something
Section titled “Correct something”Change your mind about the reader booking and write the corrected version. Do not delete anything and do not add a note saying the old one is wrong.
aizk.keep( text="# Plate reader booking\n\nThe reader moved to Mondays and Wednesdays from July, because the Tuesday slot collides with the imaging rig maintenance window.", scopes=["Research Lab"],)Ordinary recall now favors the current version. The old one keeps its dates and stays in history, so asking what the schedule was in June still works. Time and history explains the two clocks that make this work, and Notes that stay useful explains why correcting beats duplicating.
Look at what you built
Section titled “Look at what you built”Sign in to the web app and open the dashboard. You will see counts for your sources, findings, subjects, and themes, a live view of what is still converting, and the newest sources with a badge showing who can see each one.
The names are friendlier than the ones in these docs. Findings are the facts aizk extracted, subjects are the named entities, and themes are clusters it found on its own. The web app tours every screen.
What an hour should leave you with
Section titled “What an hour should leave you with”Four or five real notes, one converted document, one thing written where a teammate can find it, and one correction. That is enough to tell whether recall gives back something you would have had to go looking for otherwise, which is the only test that matters.
- Writing memory well is the next thing to read.
- Scopes explains who can read what, properly.
- Questions and answers covers what usually comes up next.