Skip to content

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 .env file in the project root directory and populate it with you Anthropic API key (do not forget to add .env to .gitignore):
ANTHROPIC_API_KEY=sk-ant-...
  • inside your app.ipynb notebook 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>