Skip to content

feat(ai-studio): add Azion Security Agent template#330

Open
VitorAEltz wants to merge 1 commit intodevfrom
feat/azion-security-agent
Open

feat(ai-studio): add Azion Security Agent template#330
VitorAEltz wants to merge 1 commit intodevfrom
feat/azion-security-agent

Conversation

@VitorAEltz
Copy link
Contributor

Template for deployment using LangGraph framework.This template provides:- React Agent implementation with TypeScript- SQL Database integration for RAG- Document chunking and vector search capabilities- LangSmith integration for request tracing- Comprehensive evaluation framework for RAG quality- Production-ready deployment configurationThe template enables developers to deploy AI agents.

…mplate for deployment using LangGraph framework.This template provides:- React Agent implementation with TypeScript- SQL Database integration for RAG- Document chunking and vector search capabilities- LangSmith integration for request tracing- Comprehensive evaluation framework for RAG quality- Production-ready deployment configurationThe template enables developers to deploy AI agents.
@VitorAEltz VitorAEltz requested a review from a team as a code owner December 1, 2025 15:12
@VitorAEltz VitorAEltz changed the title feat(ai-studio): add Azion Security Agent templateAdd new AI agent te… feat(ai-studio): add Azion Security Agent template Dec 1, 2025
Comment on lines +37 to +46
// OPTION 2: Create instance and setup database separately
//
// const vectorStore = new AzionVectorStore(embeddingModel, {
// dbName: VECTOR_STORE_DB_NAME,
// tableName: VECTOR_STORE_TABLE_NAME
// });
// await vectorStore.setupDatabase({
// mode: "hybrid",
// columns: ["*"]
// });
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need this commented code?

"@langchain/langgraph": "0.2.67",
"@langchain/mcp-adapters": "^0.6.0",
"@langchain/openai": "0.5.10",
"azion": "^1.11.1",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"azion": "^1.11.1",
"azion": "latest",

Legacy lib versions should be restricted to the v3 branch.

Comment on lines +24 to +34
// AzionRetriever - a tool that retrieves information from the vector database (Edge SQL)
// const azionRetriever = new AzionRetriever(embeddingModel,
// {entityExtractor,
// dbName:VECTOR_STORE_DB_NAME,
// vectorTable:VECTOR_STORE_TABLE_NAME,
// ftsTable:VECTOR_STORE_TABLE_NAME+"_fts",
// ftsK:3,
// similarityK:3,
// searchType:"hybrid",
// promptEntityExtractor:'Extraia as entidades relevantes para a busca. Apenas responda com as entidades, sem explicações e pontuação.'
// });
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need this commented code?

transport: "http",
url: MCP_SERVER_URL,
}
// You can put more MCP servers here
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// You can put more MCP servers here
// You can put more MCP servers here

Comment on lines +61 to +66
// const retrieverTool = createRetrieverTool(azionRetriever,{
// name: "AzionRetriever",
// description: "Ferramenta para buscar informacoes no banco de dados da Azion"
// });

//
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need this commented code?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

2 participants