File tree Expand file tree Collapse file tree 4 files changed +8
-22
lines changed
theme/components/Landingpage Expand file tree Collapse file tree 4 files changed +8
-22
lines changed Original file line number Diff line number Diff line change 3
3
> For AI observability, please refer to [ observability] ( ./observability.md ) .
4
4
5
5
``` toml
6
- [ai .embedding ]
7
- model = " gpt-3.5-turbo"
8
-
9
6
[ai .openai ]
10
7
api_key = " YOUR_API_KEY"
11
- completion_model = " gpt-3.5-turbo "
8
+ model = " gpt-4 "
12
9
13
- [ai .anthropic ]
10
+ [ai .deepseek ]
14
11
api_key = " YOUR_API_KEY"
15
- completion_model = " claude-2 "
12
+ model = " deepseek-chat "
16
13
14
+ [ai .anthropic ]
15
+ api_key = " YOUR_API_KEY"
16
+ model = " claude-3-5-sonnet-latest"
17
17
```
Original file line number Diff line number Diff line change 1
1
# Database
2
2
3
3
``` 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
-
14
4
[database .sqlite ]
15
5
path = " example.db"
16
6
@@ -42,10 +32,6 @@ password = "redis"
42
32
43
33
## Vector Database
44
34
45
- ### Pinecone
46
-
47
- ### Qdrant
48
-
49
35
## Rational Database
50
36
51
37
### SQLite
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ The `agent` keyword defines an AI agent with specific capabilities and instructi
40
40
``` rust
41
41
agent SearchAssistant {
42
42
instructions : " You are a search assistant. Help users find information." ,
43
- model : " claude-3-5-sonnet" ,
43
+ model : " claude-3-5-sonnet-latest " ,
44
44
45
45
fn search (query : str ) -> str {
46
46
// Implementation of search functionality
Original file line number Diff line number Diff line change 181
181
id: str
182
182
}
183
183
184
- return f"delete repo: {id}";
184
+ return f"delete repo: {path. id}";
185
185
}
186
186
filename: delete.ai
187
187
- title : Validator
You can’t perform that action at this time.
0 commit comments