> ## 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.

# Reasoning Step • Rust AI Agent SDK

> ReasoningStep: Represents a reasoning step in the research process

# ReasoningStep

> Defined in the [**extras**](../modules/extras) module.

<Badge color="orange">Rust AI Agent SDK</Badge>

Represents a reasoning step in the research process

## Fields

| Name        | Type     | Description            |
| ----------- | -------- | ---------------------- |
| `text`      | `String` | The reasoning text     |
| `step_type` | `String` | Type of reasoning step |

## Methods

### `new`

```rust theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
fn new(text: impl Into<String>) -> Self
```

Create a new reasoning step

**Parameters:**

| Name   | Type                      |
| ------ | ------------------------- |
| `text` | `impl Into&lt;String&gt;` |

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-rust/praisonai/src/parity/extras.rs#L49">
  `praisonai/src/parity/extras.rs` at line 49
</Card>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Rust Reasoning" icon="brain" href="/docs/rust/reasoning" />

  <Card title="Rust Thinking" icon="lightbulb" href="/docs/rust/thinking" />
</CardGroup>
