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

# Reset Short Term • AI Agent SDK

> reset_short_term: Clear this adapter's memory.

# reset\_short\_term

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

> This is a method of the [**ChromaMemoryAdapter**](../classes/ChromaMemoryAdapter) class in the [**factories**](../modules/factories) module.

Clear this adapter's memory.

NOTE: this adapter stores short-term and long-term in a single shared
collection (`store_short_term`/`search_short_term` delegate to their
long-term counterparts and no `memory_type` tag is recorded), so
per-tier scoping is not possible here — resetting short-term also clears
long-term. Use a tier-aware backend (e.g. the Dakera adapter) if you need
to erase a single tier.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def reset_short_term() -> None
```

## Used By

* [`Memory.reset_short_term`](../functions/Memory-reset_short_term)
* [`Memory.reset_all`](../functions/Memory-reset_all)

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/memory/adapters/factories.py#L390">
  `praisonaiagents/memory/adapters/factories.py` at line 390
</Card>
