Add API keys to AgenticSystemConfig instead of relying on dotenv

This commit is contained in:
Ashwin Bharambe 2024-08-21 05:28:28 -07:00
parent 2232bfa8b5
commit 529c564366
4 changed files with 17 additions and 9 deletions

View file

@ -4,9 +4,11 @@
# 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 AgenticSystemConfig(BaseModel):
# placeholder, no separate configuration is needed for now
pass
brave_search_api_key: Optional[str] = None
wolfram_api_key: Optional[str] = None