You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm following the youtube tutorial and readme, using the hosted version of agent inbox.
I've set it up in the hosted version of agent inbox and plugging in my langsmith api key, I see threads. After receiving an email, I see a question that requires an action, I click reply after entering some text and see "invalid assistant ID". Settings doesn't have any option to add an assistant ID.
Looking in the rewrite task I see its used for namespace in some way:
async def rewrite(state: State, config, store):
model = config["configurable"].get("model", "gpt-4o")
llm = ChatOpenAI(model=model, temperature=0)
prev_message = state["messages"][-1]
draft = prev_message.tool_calls[0]["args"]["content"]
namespace = (config["configurable"].get("assistant_id", "default"),) # no value for this in config.yaml
result = await store.aget(namespace, "rewrite_instructions")
prompt_config = get_config(config)
How can I set this?
The text was updated successfully, but these errors were encountered:
I'm following the youtube tutorial and readme, using the hosted version of agent inbox.
I've set it up in the hosted version of agent inbox and plugging in my langsmith api key, I see threads. After receiving an email, I see a question that requires an action, I click reply after entering some text and see "invalid assistant ID". Settings doesn't have any option to add an assistant ID.
Looking in the rewrite task I see its used for namespace in some way:
How can I set this?
The text was updated successfully, but these errors were encountered: