> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Expand Sync • Rust AI Agent SDK

> expand_sync: Expand a prompt (sync placeholder - actual implementation would use LLM)

# expand\_sync

<div className="flex items-center gap-2">
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**PromptExpanderAgent**](../classes/PromptExpanderAgent) class in the [**specialized\_agents**](../modules/specialized_agents) module.

Expand a prompt (sync placeholder - actual implementation would use LLM)

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def expand_sync(
        &self,
        prompt: &str,
        strategy: ExpandStrategy,
        context: Option<&str>,
    ) -> ExpandResult
```

## Parameters

<ParamField query="prompt" type="&str" required={true}>
  No description available.
</ParamField>

<ParamField query="strategy" type="ExpandStrategy" required={true}>
  No description available.
</ParamField>

<ParamField query="context" type="Option<&str>" required={true}>
  No description available.
</ParamField>

### Returns

<ResponseField name="Returns" type="ExpandResult">
  The result of the operation.
</ResponseField>
