Skip to content

Commit c72129c

Browse files
committed
Renamed the Agent to Ada
1 parent 25a39ac commit c72129c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ada/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
from dotenv import load_dotenv
33

44
from ada.modules.logging import logger
5-
from ada.modules.realtime_api import RealtimeAPI
5+
from ada.modules.ada import ADA
66

77
load_dotenv()
88

99
def main():
1010
print(f"Starting ADA, Another Digital Assistant...")
1111
logger.info(f"Starting ADA, Another Digital Assistant...")
12-
ada = RealtimeAPI()
12+
ada = ADA()
1313
try:
1414
asyncio.run(ada.run())
1515
except KeyboardInterrupt:

ada/modules/realtime_api.py renamed to ada/modules/ada.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import time
1212

1313

14-
class RealtimeAPI:
14+
class ADA:
1515
def __init__(self, prompts=None, ai_assistant_name="Ada", human_name="John"):
1616
self.prompts = prompts
1717
self.api_key = os.getenv("OPENAI_API_KEY")

0 commit comments

Comments
 (0)