Build your first agent
Create an agent, write its system prompt, choose tools, save it, then run a preview before adding it to workflows.
Learn how to build agents, upload knowledgebases, configure semantic retrieval, manage tools, and keep AI workflows governed without waiting on support.
Create an agent, write its system prompt, choose tools, save it, then run a preview before adding it to workflows.
Paste policies, operating notes, customer context, or URLs. Beam prepares the content for semantic retrieval.
Upload text-compatible files. Beam stores the source, extracts content, and makes it searchable for the selected agent.
Tools are selected per agent and validated server-side, so workflows only expose approved actions.
Semantic Knowledge
Create this semantic search index named knowledge_chunks_vector_index on the knowledge chunks collection.
{
"fields": [
{
"type": "vector",
"path": "embedding",
"numDimensions": 1536,
"similarity": "cosine"
},
{
"type": "filter",
"path": "userId"
},
{
"type": "filter",
"path": "agentId"
},
{
"type": "filter",
"path": "documentId"
}
]
}FAQ
Original files are stored securely. Extracted text, chunks, metadata, and semantic representations are scoped by user and agent.
Create the semantic knowledge index using the configuration shown below. The app also falls back gracefully in local development if the index is not present.
When an agent preview or workflow run starts, Beam retrieves relevant knowledge for the selected agent and prepends the best matches to the model context.
Yes. Set the agent status to Disabled in Agent Builder. Disabled agents cannot be used for live generation.