We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 015609f commit 1e46898Copy full SHA for 1e46898
agent_chat/src/agents/agent.py
@@ -1,7 +1,7 @@
1
from datetime import timedelta
2
from typing import List
3
from pydantic import BaseModel
4
-from restack_ai.workflow import agent, import_functions, log
+from restack_ai.agent import agent, import_functions, log
5
6
with import_functions():
7
from src.functions.llm_chat import llm_chat, LlmChatInput, Message
agent_chat/src/services.py
@@ -2,7 +2,7 @@
import os
from src.functions.llm_chat import llm_chat
from src.client import client
-from agent_chat.src.agents.agent import AgentChat
+from src.agents.agent import AgentChat
from watchfiles import run_process
import webbrowser
8
0 commit comments