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 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 ]
107api_key = " YOUR_API_KEY"
11- completion_model = " gpt-3.5-turbo "
8+ model = " gpt-4 "
129
13- [ai .anthropic ]
10+ [ai .deepseek ]
1411api_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```
Original file line number Diff line number Diff line change 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 ]
155path = " 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
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
4040``` rust
4141agent 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments