-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
42 lines (34 loc) · 876 Bytes
/
Copy pathconfig.yaml.example
File metadata and controls
42 lines (34 loc) · 876 Bytes
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
# BigQuery Semantic Grep Configuration
# Copy this file to ~/.grepctl/config.yaml and update with your settings
# BigQuery settings
project_id: "your-project-id"
dataset_name: "mmgrep"
location: "US"
# GCS settings
gcs_bucket: "gcm-data-lake"
gcs_prefix: "multimodal-dataset"
gcs_connection: "" # Will be auto-generated if not provided
# Model configurations
# These will be auto-generated based on project_id and location if not provided
text_model: ""
embedding_model: ""
# Chunking parameters
chunk_size: 1000
chunk_overlap: 200
max_chunk_size: 1200
# Search parameters
default_top_k: 20
search_multiplier: 5
max_search_count: 200
rerank_threshold: 50
# Vector index parameters
index_type: "IVF"
distance_type: "COSINE"
ivf_min_train_size: 10000
# Processing parameters
batch_size: 100
max_workers: 4
timeout_seconds: 300
# Logging
log_level: "INFO"
log_file: null