open source
This commit is contained in:
parent
70b6e17c69
commit
a93bfc1ec9
61 changed files with 4013 additions and 126 deletions
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue