Skip to main content
Glama
constants.py1.13 kB
""" Essential constants for basic selfmemory operations. Simplified version focusing on core memory functionality. """ class VectorConstants: """Constants for vector operations.""" VECTOR_DIMENSION = 768 # Dimension of the embedding vectors VECTOR_NAME = "embedding" # Name of the vector field in the database class SearchConstants: """Constants for search operations.""" DEFAULT_SEARCH_LIMIT = 5 # Default number of memories to retrieve MAX_SEARCH_LIMIT = 20 # Maximum number of memories allowed in one search MIN_SEARCH_LIMIT = 1 # Minimum number of memories required DEFAULT_SCORE_THRESHOLD = 0.5 # Minimum similarity score for relevant results class MetadataConstants: """Constants for memory metadata fields.""" # Core metadata fields MEMORY_FIELD = "memory" # Field name for storing memory content TIMESTAMP_FIELD = "timestamp" # Field name for storing creation time class APIConstants: """Constants for API client configuration.""" DEFAULT_TIMEOUT = 30 # Reduced from 300s to 30s for better performance DEFAULT_API_HOST = "http://localhost:8081"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/shrijayan/SelfMemory'

If you have feedback or need assistance with the MCP directory API, please join our Discord server