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

# autogen.agentchat.group.context_condition.StringContextCondition

<h2 id="autogen.agentchat.group.context_condition.StringContextCondition" class="doc doc-heading">
  <code class="doc-symbol doc-symbol-heading doc-symbol-class" />

  <span class="doc doc-object-name doc-class-name">StringContextCondition</span>
</h2>

```python theme={null}
StringContextCondition(**data: Any)
```

Simple string-based context condition.<br />This condition checks if a named context variable exists and is truthy.<br />Create a new model by parsing and validating input data from keyword arguments.<br />Raises \[`ValidationError`]\[pydantic\_core.ValidationError] if the input data cannot be
validated to form a valid model.<br />`self` is explicitly positional-only to allow `self` as a field name.

<b>Parameters:</b>

| Name     | Description   |
| -------- | ------------- |
| `**data` | **Type:** Any |

### Class Attributes

<code class="doc-symbol doc-symbol-heading doc-symbol-attribute" />

#### model\_config

<br />

<br />

<code class="doc-symbol doc-symbol-heading doc-symbol-attribute" />

#### variable\_name

<br />

<br />

### Instance Methods

<code class="doc-symbol doc-symbol-heading doc-symbol-method" />

#### evaluate

```python theme={null}
evaluate(self, context_variables: ContextVariables) -> bool
```

Check if the named context variable is truthy.<br />

<b>Parameters:</b>

| Name                | Description                                                                                                                                                    |
| ------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `context_variables` | The context variables to check against<br /><br />**Type:** [ContextVariables](/docs/api-reference/autogen/agentchat/group/context_variables/ContextVariables) |

<b>Returns:</b>

| Type | Description                                                |
| ---- | ---------------------------------------------------------- |
| bool | True if the variable exists and is truthy, False otherwise |

<br />
