Releases: neuron-core/neuron-ai
Releases · neuron-core/neuron-ai
2.9.0
2.8.19
2.8.18
new OpenAILikeResponses provider
2.8.17
2.8.16
2.8.15
Support proxy configuration for providers using Guzzle client
2.8.14
Fix Pinecone Vector Store search on empty filters
2.8.13
Add set methods to Tool interface
- setName
- setDescription
So you can now change this property on the fly attaching a tool to the agent:
protected function tools(): array
{
return [
MySQLSchemaTool::make(new \PDO(...), ['organizations', 'users'])->setName('account_schema'),
MySQLSchemaTool::make(new \PDO(...), ['orders', 'payments'])->setName('order_schema'),
];
}2.8.12
Security Vulnerability Fix
MySQLSelectTool was extend with additional forbidden statements including: INTO, OUTFILE, DUMPFILE, LOAD_FILE
MySQLWriteTool was extended with forbidden statements to avoid unsafe actions: DROP, CREATE, ALTER, GRANT, TRUNCATE, REPLACE, MERGE, CALL, EXECUTE, DELETE
All of this configurations can be customized at tool level.
2.8.11: Merge pull request #394 from giagara/2.x
Fix OpenAI responses streaming when error: PR #394