[PR #992] [MERGED] beta sheets API #1009

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/992
Author: @logan-markewich
Created: 10/30/2025
Status: Merged
Merged: 11/17/2025
Merged by: @logan-markewich

Base: mainHead: logan/beta_spreadsheet


📝 Commits (6)

📊 Changes

18 files changed (+2035 additions, -2 deletions)

View changed files

📝 .pre-commit-config.yaml (+1 -1)
examples/sheets/coding-agent-analysis/CLAUDE.md (+73 -0)
examples/sheets/coding-agent-analysis/data/.gitignore (+0 -0)
examples/sheets/coding-agent-analysis/generate_sample_data.py (+278 -0)
examples/sheets/coding-agent-analysis/reports/.gitignore (+0 -0)
examples/sheets/coding-agent-analysis/requirements.txt (+5 -0)
examples/sheets/coding-agent-analysis/scripts/extract.py (+100 -0)
examples/sheets/llama-index-agent/data/.gitignore (+0 -0)
examples/sheets/llama-index-agent/generate_sample_data.py (+278 -0)
examples/sheets/llama-index-agent/llama_index_example.py (+308 -0)
examples/sheets/llama-index-agent/requirements.txt (+7 -0)
examples/sheets/llama-index-agent/scripts/extract.py (+100 -0)
py/llama_cloud_services/beta/sheets/__init__.py (+43 -0)
py/llama_cloud_services/beta/sheets/client.py (+518 -0)
py/llama_cloud_services/beta/sheets/types.py (+156 -0)
📝 py/llama_cloud_services/constants.py (+1 -0)
📝 py/pyproject.toml (+4 -1)
py/tests/beta/sheets/test_sheets.py (+163 -0)

📄 Description

No description provided


🔄 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/992 **Author:** [@logan-markewich](https://github.com/logan-markewich) **Created:** 10/30/2025 **Status:** ✅ Merged **Merged:** 11/17/2025 **Merged by:** [@logan-markewich](https://github.com/logan-markewich) **Base:** `main` ← **Head:** `logan/beta_spreadsheet` --- ### 📝 Commits (6) - [`018dae3`](https://github.com/run-llama/llama_cloud_services/commit/018dae31664eacb14c240087449186d6e8c48972) initial - [`6118111`](https://github.com/run-llama/llama_cloud_services/commit/611811169196ba8fec3b66079380c256d974e256) initial - [`145bf34`](https://github.com/run-llama/llama_cloud_services/commit/145bf3476c6f9fb0e921a753169826c9ec795bb0) add examples - [`346b1f1`](https://github.com/run-llama/llama_cloud_services/commit/346b1f1f869fa91ef2c1214b87ab69ee91ae76ef) update things - [`918190d`](https://github.com/run-llama/llama_cloud_services/commit/918190d7de3162f141751715ae210bc1d6e0eb6c) fixes - [`853aecc`](https://github.com/run-llama/llama_cloud_services/commit/853aecc62529477dbe2f5ec966ffdaec48d03246) update CLAUDE.md ### 📊 Changes **18 files changed** (+2035 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `.pre-commit-config.yaml` (+1 -1) ➕ `examples/sheets/coding-agent-analysis/CLAUDE.md` (+73 -0) ➕ `examples/sheets/coding-agent-analysis/data/.gitignore` (+0 -0) ➕ `examples/sheets/coding-agent-analysis/generate_sample_data.py` (+278 -0) ➕ `examples/sheets/coding-agent-analysis/reports/.gitignore` (+0 -0) ➕ `examples/sheets/coding-agent-analysis/requirements.txt` (+5 -0) ➕ `examples/sheets/coding-agent-analysis/scripts/extract.py` (+100 -0) ➕ `examples/sheets/llama-index-agent/data/.gitignore` (+0 -0) ➕ `examples/sheets/llama-index-agent/generate_sample_data.py` (+278 -0) ➕ `examples/sheets/llama-index-agent/llama_index_example.py` (+308 -0) ➕ `examples/sheets/llama-index-agent/requirements.txt` (+7 -0) ➕ `examples/sheets/llama-index-agent/scripts/extract.py` (+100 -0) ➕ `py/llama_cloud_services/beta/sheets/__init__.py` (+43 -0) ➕ `py/llama_cloud_services/beta/sheets/client.py` (+518 -0) ➕ `py/llama_cloud_services/beta/sheets/types.py` (+156 -0) 📝 `py/llama_cloud_services/constants.py` (+1 -0) 📝 `py/pyproject.toml` (+4 -1) ➕ `py/tests/beta/sheets/test_sheets.py` (+163 -0) </details> ### 📄 Description _No description provided_ --- <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:50 -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#1009