MCPcopy Index your code
hub / github.com/slackapi/python-slack-sdk / chat_appendStream

Method chat_appendStream

slack_sdk/web/client.py:2645–2667  ·  view source on GitHub ↗

Appends text to an existing streaming conversation. https://docs.slack.dev/reference/methods/chat.appendStream

(
        self,
        *,
        channel: str,
        ts: str,
        markdown_text: Optional[str] = None,
        chunks: Optional[Sequence[Union[Dict, Chunk]]] = None,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

2643 # --------------------------
2644
2645 def chat_appendStream(
2646 self,
2647 *,
2648 channel: str,
2649 ts: str,
2650 markdown_text: Optional[str] = None,
2651 chunks: Optional[Sequence[Union[Dict, Chunk]]] = None,
2652 **kwargs,
2653 ) -> SlackResponse:
2654 """Appends text to an existing streaming conversation.
2655 https://docs.slack.dev/reference/methods/chat.appendStream
2656 """
2657 kwargs.update(
2658 {
2659 "channel": channel,
2660 "ts": ts,
2661 "markdown_text": markdown_text,
2662 "chunks": chunks,
2663 }
2664 )
2665 _parse_web_class_objects(kwargs)
2666 kwargs = _remove_none_values(kwargs)
2667 return self.api_call("chat.appendStream", json=kwargs)
2668
2669 def chat_delete(
2670 self,

Callers 2

_flush_bufferMethod · 0.45
_flush_bufferMethod · 0.45

Calls 3

_remove_none_valuesFunction · 0.85
_parse_web_class_objectsFunction · 0.70
api_callMethod · 0.45

Tested by

no test coverage detected