Fix missing imports
Browse filesAdd missing imports for `Tool` and `Function`
README.md
CHANGED
|
@@ -12,6 +12,10 @@ from mistral_common.protocol.instruct.messages import (
|
|
| 12 |
AssistantMessage,
|
| 13 |
UserMessage,
|
| 14 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
from mistral_common.tokens.tokenizers.mistral import MistralTokenizer
|
| 16 |
from mistral_common.tokens.instruct.normalize import ChatCompletionRequest
|
| 17 |
|
|
|
|
| 12 |
AssistantMessage,
|
| 13 |
UserMessage,
|
| 14 |
)
|
| 15 |
+
from mistral_common.protocol.instruct.tool_calls import (
|
| 16 |
+
Tool,
|
| 17 |
+
Function,
|
| 18 |
+
)
|
| 19 |
from mistral_common.tokens.tokenizers.mistral import MistralTokenizer
|
| 20 |
from mistral_common.tokens.instruct.normalize import ChatCompletionRequest
|
| 21 |
|