syntax = "proto3"; package memos.store; option go_package = "gen/store"; message AISettings { GroqSettings groq = 1; OllamaSettings ollama = 2; } message GroqSettings { string api_key = 1; string default_model = 2; bool enabled = 3; } message OllamaSettings { string host = 1; string default_model = 2; bool enabled = 3; }