[PR #989] [MERGED] docs: add llamaclassify demo #1006

Closed
opened 2026-02-16 00:19:49 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/llama_cloud_services/pull/989
Author: @AstraBert
Created: 10/22/2025
Status: Merged
Merged: 10/23/2025
Merged by: @AstraBert

Base: mainHead: clelia/add-classify-example


📝 Commits (1)

  • 8ce3021 docs: add llamaclassify demo

📊 Changes

24 files changed (+858 additions, -0 deletions)

View changed files

examples-ts/classify/.gitignore (+21 -0)
examples-ts/classify/.prettierignore (+4 -0)
examples-ts/classify/README.md (+88 -0)
examples-ts/classify/package.json (+34 -0)
examples-ts/classify/postcss.config.mjs (+5 -0)
examples-ts/classify/public/android-chrome-192x192.png (+0 -0)
examples-ts/classify/public/android-chrome-512x512.png (+0 -0)
examples-ts/classify/public/apple-touch-icon.png (+0 -0)
examples-ts/classify/public/favicon-16x16.png (+0 -0)
examples-ts/classify/public/favicon-32x32.png (+0 -0)
examples-ts/classify/public/favicon.ico (+0 -0)
examples-ts/classify/public/favicon.png (+0 -0)
examples-ts/classify/public/site.webmanifest (+19 -0)
examples-ts/classify/src/components/DefaultCatchBoundary.tsx (+53 -0)
examples-ts/classify/src/components/NotFound.tsx (+25 -0)
examples-ts/classify/src/routeTree.gen.ts (+225 -0)
examples-ts/classify/src/router.tsx (+15 -0)
examples-ts/classify/src/routes/__root.tsx (+128 -0)
examples-ts/classify/src/routes/api/classify.ts (+45 -0)
examples-ts/classify/src/routes/index.tsx (+99 -0)

...and 4 more files

📄 Description

Add a demo on financial documents classification for LlamaClassify in the TS SDK, leveraging Tanstack + DaisyUI for fullstack development.

https://github.com/user-attachments/assets/4c4e4cf0-58f0-45f7-9d6d-63ff5319ce3c


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/run-llama/llama_cloud_services/pull/989 **Author:** [@AstraBert](https://github.com/AstraBert) **Created:** 10/22/2025 **Status:** ✅ Merged **Merged:** 10/23/2025 **Merged by:** [@AstraBert](https://github.com/AstraBert) **Base:** `main` ← **Head:** `clelia/add-classify-example` --- ### 📝 Commits (1) - [`8ce3021`](https://github.com/run-llama/llama_cloud_services/commit/8ce3021704b49ca5734ee3f03c777f1089b78a6e) docs: add llamaclassify demo ### 📊 Changes **24 files changed** (+858 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `examples-ts/classify/.gitignore` (+21 -0) ➕ `examples-ts/classify/.prettierignore` (+4 -0) ➕ `examples-ts/classify/README.md` (+88 -0) ➕ `examples-ts/classify/package.json` (+34 -0) ➕ `examples-ts/classify/postcss.config.mjs` (+5 -0) ➕ `examples-ts/classify/public/android-chrome-192x192.png` (+0 -0) ➕ `examples-ts/classify/public/android-chrome-512x512.png` (+0 -0) ➕ `examples-ts/classify/public/apple-touch-icon.png` (+0 -0) ➕ `examples-ts/classify/public/favicon-16x16.png` (+0 -0) ➕ `examples-ts/classify/public/favicon-32x32.png` (+0 -0) ➕ `examples-ts/classify/public/favicon.ico` (+0 -0) ➕ `examples-ts/classify/public/favicon.png` (+0 -0) ➕ `examples-ts/classify/public/site.webmanifest` (+19 -0) ➕ `examples-ts/classify/src/components/DefaultCatchBoundary.tsx` (+53 -0) ➕ `examples-ts/classify/src/components/NotFound.tsx` (+25 -0) ➕ `examples-ts/classify/src/routeTree.gen.ts` (+225 -0) ➕ `examples-ts/classify/src/router.tsx` (+15 -0) ➕ `examples-ts/classify/src/routes/__root.tsx` (+128 -0) ➕ `examples-ts/classify/src/routes/api/classify.ts` (+45 -0) ➕ `examples-ts/classify/src/routes/index.tsx` (+99 -0) _...and 4 more files_ </details> ### 📄 Description Add a demo on financial documents classification for LlamaClassify in the TS SDK, leveraging Tanstack + DaisyUI for fullstack development. https://github.com/user-attachments/assets/4c4e4cf0-58f0-45f7-9d6d-63ff5319ce3c --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 00:19:49 -05:00
yindo closed this issue 2026-02-16 00:19:49 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/llama_cloud_services#1006