API Keys passed from Client instead of distro configuration

This commit is contained in:
Hardik Shah 2024-09-10 12:36:30 -07:00
parent a11d92601b
commit 0df4d9c9bd
5 changed files with 16 additions and 21 deletions

View file

@ -4,12 +4,7 @@
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
from typing import Optional
from pydantic import BaseModel
class MetaReferenceImplConfig(BaseModel):
brave_search_api_key: Optional[str] = None
bing_search_api_key: Optional[str] = None
wolfram_api_key: Optional[str] = None
class MetaReferenceImplConfig(BaseModel): ...