Add API keys to AgenticSystemConfig instead of relying on dotenv (#33)

This commit is contained in:
Ashwin Bharambe 2024-08-21 12:35:59 -07:00 committed by GitHub
parent face3ceff1
commit ab0a24f333
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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