[PR #340] [MERGED] feat: Add services registration API to Client #404

Closed
opened 2026-02-16 01:17:12 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/llama_deploy/pull/340
Author: @masci
Created: 10/25/2024
Status: Merged
Merged: 10/25/2024
Merged by: @masci

Base: mainHead: massi/client


📝 Commits (4)

📊 Changes

15 files changed (+244 additions, -78 deletions)

View changed files

📝 e2e_tests/basic_hitl/conftest.py (+1 -18)
📝 e2e_tests/basic_session/conftest.py (+1 -18)
📝 e2e_tests/basic_streaming/conftest.py (+1 -18)
📝 e2e_tests/basic_workflow/conftest.py (+1 -18)
e2e_tests/conftest.py (+23 -0)
e2e_tests/core/__init__.py (+0 -0)
e2e_tests/core/conftest.py (+38 -0)
e2e_tests/core/test_services.py (+39 -0)
e2e_tests/core/workflow.py (+11 -0)
📝 llama_deploy/client/base.py (+4 -2)
📝 llama_deploy/client/client.py (+11 -2)
📝 llama_deploy/client/models/__init__.py (+2 -1)
llama_deploy/client/models/core.py (+54 -0)
tests/client/models/test_core.py (+55 -0)
📝 tests/client/test_client.py (+3 -1)

📄 Description

Part of #335

  • Added client.core.services

Also in this PR:

  • remove the need to pass timeout to the client every single request. It can still be passed if one needs a custom value.
  • move common fixtures to global conftest.py to reduce duplication
  • removed scope=session so every e2e function has a fresh control plane to test

🔄 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_deploy/pull/340 **Author:** [@masci](https://github.com/masci) **Created:** 10/25/2024 **Status:** ✅ Merged **Merged:** 10/25/2024 **Merged by:** [@masci](https://github.com/masci) **Base:** `main` ← **Head:** `massi/client` --- ### 📝 Commits (4) - [`2eee0b6`](https://github.com/run-llama/llama_deploy/commit/2eee0b6a66c15f217ce6ee21b2d0f1153a2b57d0) add Core model - [`dcc8596`](https://github.com/run-llama/llama_deploy/commit/dcc85969c9aac9467424c6da1ff9a8aa2e939201) remove duplicated code - [`4b7654b`](https://github.com/run-llama/llama_deploy/commit/4b7654b5d893f5f02bc6161354c58a10768209fa) fix tests - [`7edde21`](https://github.com/run-llama/llama_deploy/commit/7edde21cd09ad37cf169244dcccf869f562ad587) more fixes ### 📊 Changes **15 files changed** (+244 additions, -78 deletions) <details> <summary>View changed files</summary> 📝 `e2e_tests/basic_hitl/conftest.py` (+1 -18) 📝 `e2e_tests/basic_session/conftest.py` (+1 -18) 📝 `e2e_tests/basic_streaming/conftest.py` (+1 -18) 📝 `e2e_tests/basic_workflow/conftest.py` (+1 -18) ➕ `e2e_tests/conftest.py` (+23 -0) ➕ `e2e_tests/core/__init__.py` (+0 -0) ➕ `e2e_tests/core/conftest.py` (+38 -0) ➕ `e2e_tests/core/test_services.py` (+39 -0) ➕ `e2e_tests/core/workflow.py` (+11 -0) 📝 `llama_deploy/client/base.py` (+4 -2) 📝 `llama_deploy/client/client.py` (+11 -2) 📝 `llama_deploy/client/models/__init__.py` (+2 -1) ➕ `llama_deploy/client/models/core.py` (+54 -0) ➕ `tests/client/models/test_core.py` (+55 -0) 📝 `tests/client/test_client.py` (+3 -1) </details> ### 📄 Description Part of #335 - Added `client.core.services` Also in this PR: - remove the need to pass `timeout` to the client every single request. It can still be passed if one needs a custom value. - move common fixtures to global `conftest.py` to reduce duplication - removed `scope=session` so every e2e function has a fresh control plane to test --- <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 01:17:12 -05:00
yindo closed this issue 2026-02-16 01:17:12 -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_deploy#404