repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | from pydantic import BaseModel |
| #2 | |
| #3 | |
| #4 | class ValkeyConfig(BaseModel): |
| #5 | """Configuration for Valkey vector store.""" |
| #6 | |
| #7 | valkey_url: str |
| #8 | collection_name: str |
| #9 | embedding_model_dims: int |
| #10 | timezone: str = "UTC" |
| #11 | index_type: str = "hnsw" # Default to HNSW, can be 'hnsw' or 'flat' |
| #12 | # HNSW specific parameters with recommended defaults |
| #13 | hnsw_m: int = 16 # Number of connections per layer (default from Valkey docs) |
| #14 | hnsw_ef_construction: int = 200 # Search width during construction |
| #15 | hnsw_ef_runtime: int = 10 # Search width during queries |
| #16 |