coderswap_create_project
Create a new vector search project to build topic-specific knowledge bases for semantic search and research workflows.
Instructions
Create a new vector search project in CoderSwap
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| description | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}