10 lines
190 B
Python
10 lines
190 B
Python
from langchain.agents import create_agent
|
|
|
|
from agent.model import model
|
|
from agent.prompt import study_prompt
|
|
|
|
study_agent = create_agent(
|
|
model=model,
|
|
system_prompt=study_prompt
|
|
)
|