mirror of
https://github.com/langchain-ai/docs.git
synced 2026-08-27 02:41:59 -04:00
11 lines
137 B
Plaintext
11 lines
137 B
Plaintext
```python
|
|
from langchain.agents import create_agent
|
|
|
|
|
|
agent = create_agent(
|
|
model,
|
|
tools,
|
|
system_prompt=system_prompt,
|
|
)
|
|
```
|