File size: 316 Bytes
e1776b1
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from promptkit import AssistantResponse
from promptkit.schema import UserMessage


class UserRequest(UserMessage):
    text: str = ""
    files: list[dict[str, bytes]] = []


class CodeInterpreterResponse(AssistantResponse):
    files: list[dict[str, bytes]] = []
    final_code: str = ""
    final_output: str = ""