Skip to content

Commit 781701e

Browse files
committed
Fix docs typos
1 parent 541c511 commit 781701e

File tree

4 files changed

+8
-22
lines changed

4 files changed

+8
-22
lines changed

docs/reference/configuration/ai.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
> For AI observability, please refer to [observability](./observability.md).
44
55
```toml
6-
[ai.embedding]
7-
model = "gpt-3.5-turbo"
8-
96
[ai.openai]
107
api_key = "YOUR_API_KEY"
11-
completion_model = "gpt-3.5-turbo"
8+
model = "gpt-4"
129

13-
[ai.anthropic]
10+
[ai.deepseek]
1411
api_key = "YOUR_API_KEY"
15-
completion_model = "claude-2"
12+
model = "deepseek-chat"
1613

14+
[ai.anthropic]
15+
api_key = "YOUR_API_KEY"
16+
model = "claude-3-5-sonnet-latest"
1717
```

docs/reference/configuration/database.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
# Database
22

33
```toml
4-
[database.pinecone]
5-
api_key = "YOUR_API_KEY"
6-
environment = "YOUR_ENVIRONMENT"
7-
index = "YOUR_INDEX"
8-
9-
[database.qdrant]
10-
api_key = "YOUR_API_KEY"
11-
environment = "YOUR_ENVIRONMENT"
12-
index = "YOUR_INDEX"
13-
144
[database.sqlite]
155
path = "example.db"
166

@@ -42,10 +32,6 @@ password = "redis"
4232

4333
## Vector Database
4434

45-
### Pinecone
46-
47-
### Qdrant
48-
4935
## Rational Database
5036

5137
### SQLite

docs/reference/language-keyword.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The `agent` keyword defines an AI agent with specific capabilities and instructi
4040
```rust
4141
agent SearchAssistant {
4242
instructions: "You are a search assistant. Help users find information.",
43-
model: "claude-3-5-sonnet",
43+
model: "claude-3-5-sonnet-latest",
4444

4545
fn search(query: str) -> str {
4646
// Implementation of search functionality

theme/components/Landingpage/features.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ web:
181181
id: str
182182
}
183183
184-
return f"delete repo: {id}";
184+
return f"delete repo: {path.id}";
185185
}
186186
filename: delete.ai
187187
- title: Validator

0 commit comments

Comments
 (0)