Spaces:
Sleeping
Sleeping
File size: 4,521 Bytes
ed3da7d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | # create_draft_document Tool
## Overview
The `create_draft_document` tool allows users (both clients and lawyers) to create and save new document drafts directly to their "My Documents" storage in Supabase.
## Tool Specifications
### Facade Version (User-facing)
```python
@tool
async def create_draft_document(
title: str,
content: str,
path: str
) -> str
```
**Parameters:**
- `title` (str): Document title (e.g., "Contract de bail", "Note juridique")
- `content` (str): Document content in HTML format (e.g., "<h1>Title</h1><p>Content...</p>")
- `path` (str): Folder path where to save the document
- Empty string `""` → root folder of My Documents
- `"Contracts/"` → ./Contracts/title.pdf
- `"Drafts/Legal/"` → ./Drafts/Legal/title.pdf
**Returns:**
- Confirmation message with document path and success status
### Real Implementation (With user_id injection)
```python
@tool
async def _create_draft_document(
user_id: str,
title: str,
content: str,
path: str
) -> str
```
**Additional Parameter:**
- `user_id` (str): User UUID (automatically injected by the agent from state)
## Usage Examples
### Example 1: Save to root folder
```python
create_draft_document(
title="Mon document",
content="<h1>Document</h1><p>Contenu...</p>",
path=""
)
# Saves as: ./Mon document.pdf
```
### Example 2: Save to Contracts folder
```python
create_draft_document(
title="Contract de bail",
content="<h1>Contrat de bail</h1><p>Ce contrat est conclu entre...</p>",
path="Contracts/"
)
# Saves as: ./Contracts/Contract de bail.pdf
```
### Example 3: Save to nested folder
```python
create_draft_document(
title="Note juridique",
content="<h1>Note</h1><p>Contenu juridique...</p>",
path="Drafts/Legal/"
)
# Saves as: ./Drafts/Legal/Note juridique.pdf
```
## Path Normalization Rules
The tool automatically normalizes the path:
1. Removes leading `./` if present
2. Ensures trailing `/` if path is provided
3. Adds `.pdf` extension automatically
4. Builds full path as `./{path}{title}.pdf`
| Input Path | Normalized Output |
|------------|-------------------|
| `"Contracts/"` | `"./Contracts/"` |
| `"Contracts"` | `"./Contracts/"` |
| `""` | `"./"` |
| `"./Contracts/"` | `"./Contracts/"` |
| `"Drafts/Legal/"` | `"./Drafts/Legal/"` |
## API Integration
### Supabase Endpoint
- **URL:** `{SUPABASE_BASE_URL}/create-document-from-html`
- **Method:** POST
- **Headers:**
- `x-api-key: <CYBERLGL_API_KEY>`
### Request Body
```json
{
"userId": "uuid-de-l-utilisateur",
"html": "<h1>Document Title</h1><p>Content...</p>",
"path": "./Contracts/Document Title.pdf"
}
```
### Response Handling
The tool handles different HTTP status codes:
- `200`: Success - Document saved
- `400`: Bad request - Returns error details
- `401`: Authentication failed - Invalid API key
- `403`: Access denied - No permission
- `500`: Server error
## Integration with Agents
### Toolsets
The tool is integrated into:
- **Client Tools:** `tools_for_client_facade` and `tools_for_client`
- **Lawyer Tools:** `tools_for_lawyer_facade` and `tools_for_lawyer`
### Parameter Injection
The `CyberLegalAgent` automatically injects `user_id` from the agent state when calling `_create_draft_document`:
```python
# In agents/chat_agent.py
if tool_call['name'] == "create_draft_document":
args["user_id"] = state.get("user_id")
logger.info(f"📝 Injecting user_id for create_draft_document: {args['user_id']}")
```
## Configuration Requirements
The following environment variables must be set:
- `SUPABASE_BASE_URL`: Base URL for Supabase functions
- `CYBERLGL_API_KEY`: API key for authentication
## Error Handling
The tool includes comprehensive error handling:
- Timeout errors (30s timeout)
- Connection errors
- JSON parsing errors
- HTTP status code errors
- Configuration errors (missing environment variables)
## Testing
A test file is available at `tests/test_create_draft_document.py` which tests:
1. Facade functionality
2. Real implementation with various path formats
3. Path normalization logic
## Use Cases
Users should use this tool when they want to:
- Create a new document draft
- Save a generated document
- Store a document in their document library
- Organize documents in specific folders
## Notes
- The `.pdf` extension is added automatically
- The path normalization is handled transparently
- The tool is available to both clients and lawyers
- The user_id is automatically injected and not exposed to users |