Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
dist
.docs-content
.build-cache
1,259 changes: 0 additions & 1,259 deletions docs/bun.lock

This file was deleted.

44 changes: 0 additions & 44 deletions docs/content/_meta.json

This file was deleted.

25 changes: 25 additions & 0 deletions docs/content/_meta.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import type { ProductSpec } from "@/src/lib/content/spec";
import api from "./api/_meta";

const docsSection = {
label: "Docs",
slug: "index",
weight: 2,
children: [
{
slug: "index",
label: "Welcome",
},
{
slug: "examples",
label: "Examples (For LLMs)",
},
],
};

const mirascopeV2Spec: ProductSpec = {
product: { name: "mirascope", version: "v2" },
sections: [docsSection, api],
};

export default mirascopeV2Spec;
126 changes: 1 addition & 125 deletions docs/content/examples.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,132 +6,8 @@ description: Unified doc with diverse examples, intended as a primer for LLMs on
# Mirascope: Progressive Examples

Progressive examples of Mirascope: LLM Abstractions that Aren't Obstructions.
These are intended to give LLMs an extensive primer on Mirascope's interface.
These are intended to give LLMs a primer on Mirascope's interface.

## `sazed/sazed.py`

<CodeExample file="examples/sazed/sazed.py" />

## `sazed/sazed_async.py`

<CodeExample file="examples/sazed/sazed_async.py" />

## `sazed/sazed_stream.py`

<CodeExample file="examples/sazed/sazed_stream.py" />

## `sazed/sazed_async_stream.py`

<CodeExample file="examples/sazed/sazed_async_stream.py" />

## `sazed/sazed_tools.py`

<CodeExample file="examples/sazed/sazed_tools.py" />

## `sazed/sazed_async_tools.py`

<CodeExample file="examples/sazed/sazed_async_tools.py" />

## `sazed/sazed_stream_tools.py`

<CodeExample file="examples/sazed/sazed_stream_tools.py" />

## `sazed/sazed_async_stream_tools.py`

<CodeExample file="examples/sazed/sazed_async_stream_tools.py" />

## `sazed/sazed_structured.py`

<CodeExample file="examples/sazed/sazed_structured.py" />

## `sazed/sazed_async_structured.py`

<CodeExample file="examples/sazed/sazed_async_structured.py" />

## `sazed/sazed_stream_structured.py`

<CodeExample file="examples/sazed/sazed_stream_structured.py" />

## `sazed/sazed_async_stream_structured.py`

<CodeExample file="examples/sazed/sazed_async_stream_structured.py" />

## `sazed/sazed_tools_structured.py`

<CodeExample file="examples/sazed/sazed_tools_structured.py" />

## `sazed/sazed_async_tools_structured.py`

<CodeExample file="examples/sazed/sazed_async_tools_structured.py" />

## `sazed/sazed_stream_tools_structured.py`

<CodeExample file="examples/sazed/sazed_stream_tools_structured.py" />

## `sazed/sazed_async_stream_tools_structured.py`

<CodeExample file="examples/sazed/sazed_async_stream_tools_structured.py" />

## `sazed/sazed_context.py`

<CodeExample file="examples/sazed/sazed_context.py" />

## `sazed/sazed_async_context.py`

<CodeExample file="examples/sazed/sazed_async_context.py" />

## `sazed/sazed_stream_context.py`

<CodeExample file="examples/sazed/sazed_stream_context.py" />

## `sazed/sazed_async_stream_context.py`

<CodeExample file="examples/sazed/sazed_async_stream_context.py" />

## `sazed/sazed_tools_context.py`

<CodeExample file="examples/sazed/sazed_tools_context.py" />

## `sazed/sazed_async_tools_context.py`

<CodeExample file="examples/sazed/sazed_async_tools_context.py" />

## `sazed/sazed_stream_tools_context.py`

<CodeExample file="examples/sazed/sazed_stream_tools_context.py" />

## `sazed/sazed_async_stream_tools_context.py`

<CodeExample file="examples/sazed/sazed_async_stream_tools_context.py" />

## `sazed/sazed_context_structured.py`

<CodeExample file="examples/sazed/sazed_context_structured.py" />

## `sazed/sazed_async_context_structured.py`

<CodeExample file="examples/sazed/sazed_async_context_structured.py" />

## `sazed/sazed_stream_context_structured.py`

<CodeExample file="examples/sazed/sazed_stream_context_structured.py" />

## `sazed/sazed_async_stream_context_structured.py`

<CodeExample file="examples/sazed/sazed_async_stream_context_structured.py" />

## `sazed/sazed_tools_context_structured.py`

<CodeExample file="examples/sazed/sazed_tools_context_structured.py" />

## `sazed/sazed_async_tools_context_structured.py`

<CodeExample file="examples/sazed/sazed_async_tools_context_structured.py" />

## `sazed/sazed_stream_tools_context_structured.py`

<CodeExample file="examples/sazed/sazed_stream_tools_context_structured.py" />

## `sazed/sazed_async_stream_tools_context_structured.py`

<CodeExample file="examples/sazed/sazed_async_stream_tools_context_structured.py" />
Loading