Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integrations/mistral/examples/streaming_chat_with_rag.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# To run this example, you will need an to set a `MISTRAL_API_KEY` environment variable.
# To run this example, you will need to set a `MISTRAL_API_KEY` environment variable.
# This example streams chat replies to the console.

from haystack import Pipeline
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .mistral.agent import MistralAgent

__all__ = ["MistralAgent"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .agent import MistralAgent

__all__ = ["MistralAgent"]
Loading
Loading