JDawg
JDawg is an inline code assistant that you can use inside Jurassic projects. It is inspired by Solveit dialog interface. It is still VERY experimental.
You can start using JDawg in your existing Jurassic based project like this:
deno add -D jsr:@jurassic/jurassic- create
.envfile in the project root directory and populate it with you Anthropic API key (do not forget to add.envto.gitignore):
ANTHROPIC_API_KEY=sk-ant-...- inside your
app.ipynbnotebook you can now do:
ts
import { j } from "@jurassic/jurassic";
j.initialize("app.ipynb");
await j`document app function`;j
typescript
function j(strings: TemplateStringsArray, expr: string[]): Promise<void>