Guides
Prompts
How to instruct your agents
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to instruct your agents
PROMPT = """
sample prompt
"""
prompt = vocode_client.prompts.create_prompt(request=PromptParams(content=PROMPT))
update_response = vocode_client.agents.update_agent(
id=agent_id,
request=AgentUpdateParams(
prompt=prompt.id,
),
)
