Files
langgraph/examples/cloud_examples/configuration_cloud.ipynb
T

6.6 KiB

How to create agents with configuration

One of the benefits of LangGraph API is that it lets you create agents with different configurations. This is useful when you want to:

  • Define a cognitive architecture once as a LangGraph
  • Let that LangGraph be configurable across some attributes (for example, system message or LLM to use)
  • Let users create agents with arbitrary configurations, save them, and then use them in the future

In this guide we will show how to do that for the default agent we have built in.

If you look at the agent we defined, you can see that inside the call_model node we have created the model based on some configuration. That node looks like:

def call_model(state, config):
    messages = state["messages"]
    model_name = config.get('configurable', {}).get("model_name", "anthropic")
    model = _get_model(model_name)
    response = model.invoke(messages)
    # We return a list, because this will get added to the existing list
    return {"messages": [response]}

We are looking inside the config for a model_name parameter (which defaults to anthropic if none is found). That means that by default we are using Anthropic as our model provider. In this example we will see an example of how to create an example agent that is configured to use OpenAI.

We've also communicated to the graph that it should expect configuration with this key. We've done this by passing config_schema when constructing the graph, eg:

class GraphConfig(TypedDict):
    model_name: Literal["anthropic", "openai"]


# Define a new graph
workflow = StateGraph(AgentState, config_schema=GraphConfig)
In [16]:
from langgraph_sdk import get_client

client = get_client()
In [14]:
# First, let's check what valid configuration can be
# We can do this by getting the default assistant
# There should always be a default assistant with no configuration
assistants = await client.assistants.search()
assistants = [a for a in assistants if not a["config"]]
base_assistant = assistants[0]
In [17]:
# We can now call `.get_schemas` to get schemas associated with this graph
schemas = await client.assistants.get_schemas(
    assistant_id=base_assistant["assistant_id"]
)
# There are multiple types of schemas
# We can get the `config_schema` to look at the the configurable parameters
schemas["config_schema"]["definitions"]["Configurable"]["properties"]
Out [17]:
{'model_name': {'title': 'Model Name',
  'enum': ['anthropic', 'openai'],
  'type': 'string'}}
In [18]:
assistant = await client.assistants.create(
    graph_id="agent", config={"configurable": {"model_name": "openai"}}
)

We can see that this assistant has saved the config

In [20]:
assistant
Out [20]:
{'assistant_id': '40a3a2bf-5319-4fae-a2ac-05e075615cdc',
 'graph_id': 'agent',
 'config': {'configurable': {'model_name': 'openai'}},
 'created_at': '2024-06-05T23:12:30.519458+00:00',
 'updated_at': '2024-06-05T23:12:30.519458+00:00',
 'metadata': {}}
In [21]:
thread = await client.threads.create()
input = {"messages": [{"role": "user", "content": "who made you?"}]}
async for event in client.runs.stream(
    thread["thread_id"], assistant["assistant_id"], input=input
):
    print(event)
StreamPart(event='metadata', data={'run_id': '1ef23911-c23b-6d8c-b1dc-94bb982ca7b1'})
StreamPart(event='values', data={'messages': [{'role': 'user', 'content': 'who made you?'}]})
StreamPart(event='values', data={'messages': [{'content': 'who made you?', 'additional_kwargs': {}, 'response_metadata': {}, 'type': 'human', 'name': None, 'id': 'ed93c1c9-80d6-4f2b-a048-ef859ea533f9', 'example': False}, {'content': 'I was created by OpenAI, a research organization focused on developing and advancing artificial intelligence technology.', 'additional_kwargs': {}, 'response_metadata': {'finish_reason': 'stop'}, 'type': 'ai', 'name': None, 'id': 'run-6560cd65-5c9c-434b-8835-0baadc684760', 'example': False, 'tool_calls': [], 'invalid_tool_calls': [], 'usage_metadata': None}]})
StreamPart(event='end', data=None)