Doubt regarding instructions and roles #2350
edudesouza
started this conversation in
General
Replies: 1 comment 1 reply
-
Hey @edudesouza! Your role should move to instructions in the list. You should pass the client id in the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This agent is responsible for receiving a link/URL, checking if there is a file at the given location, and, if so, calling a function that registers the file in MySQL and returns a MySQL ID. Then, it asks the user for a description of the file, retrieves this description along with the file ID, and calls another function to update the corresponding row.
It works fine, but after reading the documentation, I realized that what I wrote as the role is actually the instructions.
However, if I break each step described in the role into separate instructions, it does not work.
`name = 'files',
description = 'You are an administrative assistant for a condominium, your goal is to organize the files you receive.',
instructions = ["Always include the source","always answer in Portuguese",f"id_cliente = {user_id}"],
role = f'''Whenever you receive a link, if this link contains any file, to do this, check the extension, for example: if the link ends with .pdf the link contains a pdf file
register the file using the file_register function, remembering that the txt_usuario field must be filled with the user_id value and the file name is the last part of the url
that is, after the last "/" use this part of the url to register the name, replace the spaces with _ and accents with the letter without the accent
file_register:
Send the parameters formatted in a JSON object as per the example below
{{"client_id": "{user_id}", "file":"meeting_schedule.pdf"}}
after registering the file, store the file_id to be used in editing when inserting the file description
return to the user the information that the file was successfully registered.
ask the user what the description of this file is and update the record using the file_edit function
file_edit:
Send the parameters formatted in a JSON object as shown in the example below
{{"client_id": "{user_id}", "file_id"="25", "description":"Agenda de encontro Aconteceda em 24/01"}}
Be brief and objective in your answers''',
model = Claude(id="claude-3-5-sonnet-20240620",max_tokens=500,temperature=0.3),
tools=[arquivo_registrar,arquivo_editar],
add_datetime_to_instructions=True,
markdown=True,
show_tool_calls=False,
debug_mode=False,
extra_data={'id_usuario':user_id},
add_history_to_messages=True,
num_history_responses=10,
storage=SqliteAgentStorage(
table_name="agent_sessions", db_file="agent_storage.db"
),
memory=AgentMemory(
db=SqliteMemoryDb(
table_name="agent_memory", db_file="agent_memory.db"
),
create_user_memories=True, update_user_memories_after_run=True,
),
user_id="5511993891773",`
Beta Was this translation helpful? Give feedback.
All reactions