Skip to content
Merged
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 pdl-live-react/src/demos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ These demo traces were sourced as follows:
- demo6: [error.pdl](../../demos/error.pdl)
- demo7: [4-talk.pdl](../../../examples/talk/4-function.pdl)
- demo8: [demo-hallucination](../../../examples/intrinsics/demo-hallucination.pdl). To run this currently requires... work. https://github.com/ibm-granite-community/granite-snack-cookbook/blob/main/recipes/Intrinsics/Granite_RAG_LoRA.ipynb
- demo9: [gsm8.pdl](../../../examples/gsm8k/gsm8.pdl)
1 change: 1 addition & 0 deletions pdl-live-react/src/demos/demo9.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions pdl-live-react/src/demos/demos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import demo5 from "./demo5.json"
import demo6 from "./demo6.json"
import demo7 from "./demo7.json"
import demo8 from "./demo8.json"
import demo9 from "./demo9.json"

export type Demo = {
name: string
Expand All @@ -21,6 +22,7 @@ const demos: Demo[] = [
demo6,
demo7,
demo8,
demo9,
].map((demo) => ({
name: demo.description,
trace: JSON.stringify(demo),
Expand Down