mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-29 01:58:14 +00:00
fix: remove trailing whitespace from docstring
Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
@@ -769,16 +769,16 @@ class Crew(FlowTrackable, BaseModel):
|
|||||||
def kickoff_stream(self, inputs: dict[str, Any] | None = None):
|
def kickoff_stream(self, inputs: dict[str, Any] | None = None):
|
||||||
"""
|
"""
|
||||||
Stream crew execution events in real-time.
|
Stream crew execution events in real-time.
|
||||||
|
|
||||||
This method yields events as they occur during crew execution, making it
|
This method yields events as they occur during crew execution, making it
|
||||||
easy to integrate with streaming frameworks like FastAPI's StreamingResponse.
|
easy to integrate with streaming frameworks like FastAPI's StreamingResponse.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
inputs: Optional dictionary of inputs for the crew execution
|
inputs: Optional dictionary of inputs for the crew execution
|
||||||
|
|
||||||
Yields:
|
Yields:
|
||||||
dict: Event dictionaries containing event type and data
|
dict: Event dictionaries containing event type and data
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
```python
|
```python
|
||||||
from fastapi import FastAPI
|
from fastapi import FastAPI
|
||||||
|
|||||||
Reference in New Issue
Block a user