feat: Add LlamaCloud config to LlamaIndexServer #129

Open
opened 2026-02-15 19:16:09 -05:00 by yindo · 0 comments
Owner

Originally created by @leehuwuj on GitHub (Apr 2, 2025).

Originally assigned to: @leehuwuj, @thucpn on GitHub.

Idea:

  • Creating a LlamaIndexSever with LlamaCloud index:
 app = LlamaIndexServer(
        ...,
        llamacloud={
            "base_url": ...
            "api_key": ...
            "org_id": ...
            "pipeline_id": ...
            "project_name": ...
        },
      )
  • Then in workflow factory, we might want to add a new parameter that providing the index.
def create_workflow(user_request, index) -> Workflow:
    ...
  • For the generation script we can re-import the app instance and add a new method like:
app.llamacloud.refresh_index(data_dir)
Originally created by @leehuwuj on GitHub (Apr 2, 2025). Originally assigned to: @leehuwuj, @thucpn on GitHub. Idea: + Creating a LlamaIndexSever with LlamaCloud index: ```python app = LlamaIndexServer( ..., llamacloud={ "base_url": ... "api_key": ... "org_id": ... "pipeline_id": ... "project_name": ... }, ) ``` + Then in workflow factory, we might want to add a new parameter that providing the index. ```python def create_workflow(user_request, index) -> Workflow: ... ``` + For the generation script we can re-import the app instance and add a new method like: ```python app.llamacloud.refresh_index(data_dir) ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/create-llama#129