-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.code-index.example.json
More file actions
73 lines (68 loc) · 1.73 KB
/
.code-index.example.json
File metadata and controls
73 lines (68 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"project": "my-project",
"sources": [
{
"path": "src",
"language": "go",
"exclude": ["**/vendor/**", "**/*_test.go", "**/testdata/**"],
"vendor_include": []
},
{
"path": "frontend/src",
"language": "typescript",
"exclude": ["**/*.test.ts", "**/*.spec.ts", "**/__tests__/**"]
},
{
"path": "scripts",
"language": "python",
"exclude": ["**/__pycache__/**"]
},
{
"path": "docs",
"language": "markdown",
"exclude": ["**/_site/**"]
}
],
"_comment_llm": "Choose ONE of the llm blocks below and delete the others.",
"llm_ollama_example": {
"provider": "openai",
"base_url": "http://localhost:11434/v1",
"function_model": "llama3.2",
"summary_model": "llama3.2"
},
"llm_openai_example": {
"provider": "openai",
"api_key_env": "OPENAI_API_KEY",
"function_model": "gpt-4o-mini",
"summary_model": "gpt-4o"
},
"llm": {
"provider": "bedrock",
"function_model": "us.anthropic.claude-haiku-4-5-20251001-v1:0",
"summary_model": "us.anthropic.claude-sonnet-4-6"
},
"_comment_embeddings": "Choose ONE of the embeddings blocks below and delete the others.",
"embeddings_ollama_example": {
"provider": "openai",
"base_url": "http://localhost:11434/v1",
"model": "nomic-embed-text"
},
"embeddings_openai_example": {
"provider": "openai",
"api_key_env": "OPENAI_API_KEY",
"model": "text-embedding-3-small"
},
"embeddings": {
"provider": "bedrock",
"model": "cohere.embed-v4:0"
},
"storage": {
"s3_bucket": "my-code-index",
"s3_prefix": "vectors"
},
"aws": {
"region": "us-east-1",
"account": "123456789012",
"profiles": ["default"]
}
}