Skip to content

Commit 1e46898

Browse files
committed
fix imports
1 parent 015609f commit 1e46898

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

agent_chat/src/agents/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from datetime import timedelta
22
from typing import List
33
from pydantic import BaseModel
4-
from restack_ai.workflow import agent, import_functions, log
4+
from restack_ai.agent import agent, import_functions, log
55

66
with import_functions():
77
from src.functions.llm_chat import llm_chat, LlmChatInput, Message

agent_chat/src/services.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
from src.functions.llm_chat import llm_chat
44
from src.client import client
5-
from agent_chat.src.agents.agent import AgentChat
5+
from src.agents.agent import AgentChat
66
from watchfiles import run_process
77
import webbrowser
88

0 commit comments

Comments
 (0)