mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-15 23:15:30 +01:00
chore: Mark agent_ids field as deprecated in favor of edges across various schemas and types
This commit is contained in:
parent
317a5b5310
commit
cfffd43184
5 changed files with 5 additions and 0 deletions
|
|
@ -68,6 +68,7 @@ const agentSchema = new Schema<IAgent>(
|
|||
end_after_tools: {
|
||||
type: Boolean,
|
||||
},
|
||||
/** @deprecated Use edges instead */
|
||||
agent_ids: {
|
||||
type: [String],
|
||||
},
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ export interface IAgent extends Omit<Document, 'model'> {
|
|||
authorName?: string;
|
||||
hide_sequential_outputs?: boolean;
|
||||
end_after_tools?: boolean;
|
||||
/** @deprecated Use edges instead */
|
||||
agent_ids?: string[];
|
||||
edges?: GraphEdge[];
|
||||
/** @deprecated Use ACL permissions instead */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue