django_ai_assistant.helpers.use_cases¶
get_assistant_cls(assistant_id, user, request=None)
¶
Get assistant class by id.
Uses AI_ASSISTANT_CAN_RUN_ASSISTANT_FN
permission to check if user can run the assistant.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
assistant_id |
str
|
Assistant id to get |
required |
user |
Any
|
Current user |
required |
request |
HttpRequest | None
|
Current request, if any |
None
|
Returns: type[AIAssistant]: Assistant class with the given id Raises: AIAssistantNotDefinedError: If assistant with the given id is not found AIUserNotAllowedError: If user is not allowed to use the assistant
Source code in django_ai_assistant/helpers/use_cases.py
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 |
|
get_single_assistant_info(assistant_id, user, request=None)
¶
Get assistant info id. Returns a dictionary with the assistant id and name.
Uses AI_ASSISTANT_CAN_RUN_ASSISTANT_FN
permission to check if user can see the assistant.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
assistant_id |
str
|
Assistant id to get |
required |
user |
Any
|
Current user |
required |
request |
HttpRequest | None
|
Current request, if any |
None
|
Returns:
dict[str, str]: dict like {"id": "personal_ai", "name": "Personal AI"}
Raises:
AIAssistantNotDefinedError: If assistant with the given id is not found
AIUserNotAllowedError: If user is not allowed to see the assistant
Source code in django_ai_assistant/helpers/use_cases.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
|
get_assistants_info(user, request=None)
¶
Get all assistants info. Returns a list of dictionaries with the assistant id and name.
Uses AI_ASSISTANT_CAN_RUN_ASSISTANT_FN
permission to check the assistants the user can see,
and returns only the ones the user can see.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user |
Any
|
Current user |
required |
request |
HttpRequest | None
|
Current request, if any |
None
|
Returns:
list[dict[str, str]]: List of dicts like [{"id": "personal_ai", "name": "Personal AI"}, ...]
Source code in django_ai_assistant/helpers/use_cases.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
|
create_message(assistant_id, thread, user, content, request=None)
¶
Create a message in a thread, and right after runs the assistant to get the AI response.
Uses AI_ASSISTANT_CAN_RUN_ASSISTANT_FN
permission to check if user can run the assistant.
Uses AI_ASSISTANT_CAN_CREATE_MESSAGE_FN
permission to check if user can create a message in the thread.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
assistant_id |
str
|
Assistant id to use to get the AI response |
required |
thread |
Thread
|
Thread where to create the message |
required |
user |
Any
|
Current user |
required |
content |
Any
|
Message content, usually a string |
required |
request |
HttpRequest | None
|
Current request, if any |
None
|
Returns:
dict: The output of the assistant,
structured like {"output": "assistant response", "history": ...}
Raises:
AIUserNotAllowedError: If user is not allowed to create messages in the thread
Source code in django_ai_assistant/helpers/use_cases.py
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 |
|
create_thread(name, user, assistant_id=None, request=None)
¶
Create a thread.
Uses AI_ASSISTANT_CAN_CREATE_THREAD_FN
permission to check if user can create a thread.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
Thread name |
required |
assistant_id |
str | None
|
Assistant ID to associate the thread with. If empty or None, the thread is not associated with any assistant. |
None
|
user |
Any
|
Current user |
required |
request |
HttpRequest | None
|
Current request, if any |
None
|
Returns: Thread: Created thread model instance Raises: AIUserNotAllowedError: If user is not allowed to create threads
Source code in django_ai_assistant/helpers/use_cases.py
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 |
|
get_single_thread(thread_id, user, request=None)
¶
Get a single thread by id.
Uses AI_ASSISTANT_CAN_VIEW_THREAD_FN
permission to check if user can view the thread.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
thread_id |
str
|
Thread id to get |
required |
user |
Any
|
Current user |
required |
request |
HttpRequest | None
|
Current request, if any |
None
|
Returns: Thread: Thread model instance Raises: AIUserNotAllowedError: If user is not allowed to view the thread
Source code in django_ai_assistant/helpers/use_cases.py
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
|
get_threads(user, assistant_id=None, request=None)
¶
Get all threads for the user.
Uses AI_ASSISTANT_CAN_VIEW_THREAD_FN
permission to check the threads the user can see,
and returns only the ones the user can see.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user |
Any
|
Current user |
required |
assistant_id |
str | None
|
Assistant ID to filter threads by. If empty or None, all threads for the user are returned. |
None
|
request |
HttpRequest | None
|
Current request, if any |
None
|
Returns: list[Thread]: List of thread model instances
Source code in django_ai_assistant/helpers/use_cases.py
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
|
update_thread(thread, name, user, request=None)
¶
Update thread name.
Uses AI_ASSISTANT_CAN_UPDATE_THREAD_FN
permission to check if user can update the thread.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
thread |
Thread
|
Thread model instance to update |
required |
name |
str
|
New thread name |
required |
user |
Any
|
Current user |
required |
request |
HttpRequest | None
|
Current request, if any |
None
|
Returns: Thread: Updated thread model instance Raises: AIUserNotAllowedError: If user is not allowed to update the thread
Source code in django_ai_assistant/helpers/use_cases.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
|
delete_thread(thread, user, request=None)
¶
Delete a thread.
Uses AI_ASSISTANT_CAN_DELETE_THREAD_FN
permission to check if user can delete the thread.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
thread |
Thread
|
Thread model instance to delete |
required |
user |
Any
|
Current user |
required |
request |
HttpRequest | None
|
Current request, if any |
None
|
Raises: AIUserNotAllowedError: If user is not allowed to delete the thread
Source code in django_ai_assistant/helpers/use_cases.py
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
|
get_thread_messages(thread, user, request=None)
¶
Get all messages in a thread.
Uses AI_ASSISTANT_CAN_VIEW_THREAD_FN
permission to check if user can view the thread.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
thread |
Thread
|
Thread model instance to get messages from |
required |
user |
Any
|
Current user |
required |
request |
HttpRequest | None
|
Current request, if any |
None
|
Returns: list[BaseMessage]: List of message instances
Source code in django_ai_assistant/helpers/use_cases.py
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
|
delete_message(message, user, request=None)
¶
Delete a message.
Uses AI_ASSISTANT_CAN_DELETE_MESSAGE_FN
permission to check if user can delete the message.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message |
Message
|
Message model instance to delete |
required |
user |
Any
|
Current user |
required |
request |
HttpRequest | None
|
Current request, if any |
None
|
Raises: AIUserNotAllowedError: If user is not allowed to delete the message
Source code in django_ai_assistant/helpers/use_cases.py
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|