Skip to content

Commit 90a748f

Browse files
piiiicopiiiico
authored andcommitted
Fix Vale DashesSpaces: remove all spaces around em dashes in agentlair docs
1 parent f58fe9f commit 90a748f

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/oss/python/integrations/providers/agentlair.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ export AGENTLAIR_API_KEY="your-api-key"
2828

2929
<Columns cols={2}>
3030
<Card title="AgentLair Tools" href="/oss/integrations/tools/agentlair" cta="Get started" icon="tool" arrow>
31-
Five tools for email, vault, and audit trailgiving your agent a persistent identity and cross-session memory.
31+
Five tools for email, vault, and audit trailgiving your agent a persistent identity and cross-session memory.
3232
</Card>
3333
</Columns>

src/oss/python/integrations/tools/agentlair.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ This guide shows how to use the five AgentLair tools with LangChain agents. For
1818
### Features
1919

2020
- 📧 **Send and receive real email** from a persistent `@agentlair.dev` address
21-
- 🔐 **Encrypted cross-session vault**store secrets and state that survive container restarts
22-
- 📋 **Immutable audit trail**every tool call logged with timestamp and agent identifier
23-
- 🆔 **Agent identity in metadata**all tools carry `metadata["agent_email"]` for downstream tracing
21+
- 🔐 **Encrypted cross-session vault**store secrets and state that survive container restarts
22+
- 📋 **Immutable audit trail**every tool call logged with timestamp and agent identifier
23+
- 🆔 **Agent identity in metadata**all tools carry `metadata["agent_email"]` for downstream tracing
2424

2525
---
2626

@@ -163,10 +163,10 @@ handler = AgentLairCallbackHandler(client=client, agent_email="mybot@agentlair.d
163163
model = init_chat_model(model="gpt-4o", callbacks=[handler])
164164

165165
# Every tool call now logs:
166-
# - tool.start before tool runs (records input)
167-
# - tool.end after tool succeeds (records output + elapsed ms)
168-
# - tool.error if tool raises
169-
# - agent.finishwhen agent returns final answer
166+
# - tool.start before tool runs (records input)
167+
# - tool.end after tool succeeds (records output + elapsed ms)
168+
# - tool.error if tool raises
169+
# - agent.finishwhen agent returns final answer
170170
```
171171

172172
---

0 commit comments

Comments
 (0)