Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit da5bf12

Browse files
committed
cleanup
1 parent 1246032 commit da5bf12

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

agent_telephony/twilio_livekit/agent_twilio/src/functions/llm_talk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ async def llm_talk(function_input: LlmTalkInput) -> str:
6161
return response.choices[0].message.content
6262

6363
except Exception as e:
64-
raise NonRetryableError(f"llm_fast failed: {e}") from e
64+
raise NonRetryableError(f"llm_talk failed: {e}") from e

agent_telephony/vapi/agent_vapi/src/agents/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from restack_ai.agent import NonRetryableError, agent, import_functions, log
55

66
with import_functions():
7-
from src.functions.llm_fast import LlmChatInput, Message, llm_chat
7+
from src.functions.llm_chat import LlmChatInput, Message, llm_chat
88
from src.functions.vapi_call import VapiCallInput, vapi_call
99

1010

agent_telephony/vapi/agent_vapi/src/services.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from src.agents.agent import AgentVapi
99
from src.client import client
10-
from src.functions.llm_fast import llm_chat
10+
from src.functions.llm_chat import llm_chat
1111
from src.functions.vapi_call import vapi_call
1212

1313

0 commit comments

Comments
 (0)