mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-26 00:46:22 +02:00
Fix/queue configurations (#585)
* Fix config-svc startup dupe CLI args * Fix missing params on collection service * Fix collection management handling
This commit is contained in:
parent
ba95fa226b
commit
39f6a8b940
8 changed files with 59 additions and 63 deletions
|
|
@ -41,9 +41,7 @@ class Collection:
|
|||
collection = v["collection"],
|
||||
name = v["name"],
|
||||
description = v["description"],
|
||||
tags = v["tags"],
|
||||
created_at = v["created_at"],
|
||||
updated_at = v["updated_at"]
|
||||
tags = v["tags"]
|
||||
)
|
||||
for v in collections
|
||||
]
|
||||
|
|
@ -76,9 +74,7 @@ class Collection:
|
|||
collection = v["collection"],
|
||||
name = v["name"],
|
||||
description = v["description"],
|
||||
tags = v["tags"],
|
||||
created_at = v["created_at"],
|
||||
updated_at = v["updated_at"]
|
||||
tags = v["tags"]
|
||||
)
|
||||
return None
|
||||
except Exception as e:
|
||||
|
|
|
|||
|
|
@ -49,8 +49,6 @@ class CollectionMetadata:
|
|||
name : str
|
||||
description : str
|
||||
tags : List[str]
|
||||
created_at : str
|
||||
updated_at : str
|
||||
|
||||
# Streaming chunk types
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue