forked from phoenix-oss/llama-stack-mirror
Add API keys to AgenticSystemConfig instead of relying on dotenv (#33)
This commit is contained in:
parent
face3ceff1
commit
ab0a24f333
4 changed files with 17 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue