open source

This commit is contained in:
Ajay Raj 2023-03-28 00:15:34 -07:00
commit a93bfc1ec9
61 changed files with 4013 additions and 126 deletions

View file

@ -0,0 +1,17 @@
import logging
import os
from typing import Optional
from redis import Redis
from vocode.streaming.models.telephony import CallConfig
class BaseConfigManager:
def save_config(self, conversation_id: str, config: CallConfig):
raise NotImplementedError
def get_config(self, conversation_id) -> Optional[CallConfig]:
raise NotImplementedError
def delete_config(self, conversation_id):
raise NotImplementedError