forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrewai_sdk.py
More file actions
678 lines (573 loc) · 20.7 KB
/
Copy pathcrewai_sdk.py
File metadata and controls
678 lines (573 loc) · 20.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
"""
CrewAI integration for CopilotKit
"""
import uuid
import json
import asyncio
from typing_extensions import Any, Dict, List, Literal, Optional
from copilotkit.exc import CopilotKitMisuseError
from pydantic import BaseModel, Field
from litellm.types.utils import (
ModelResponse,
Choices,
Message as LiteLLMMessage,
ChatCompletionMessageToolCall,
Function as LiteLLMFunction,
)
from litellm.litellm_core_utils.streaming_handler import CustomStreamWrapper
from crewai.flow.flow import FlowState, Flow
try:
from crewai.utilities.events.flow_events import (
FlowEvent as CrewAIFlowEvent,
FlowStartedEvent,
MethodExecutionStartedEvent,
MethodExecutionFinishedEvent,
FlowFinishedEvent,
)
except ImportError:
from crewai.events.types.flow_events import ( # type: ignore[no-redef]
FlowEvent as CrewAIFlowEvent,
FlowStartedEvent,
MethodExecutionStartedEvent,
MethodExecutionFinishedEvent,
FlowFinishedEvent,
)
from crewai.utilities.events import crewai_event_bus as _crewai_event_bus
from copilotkit.types import Message
from copilotkit.logging import get_logger
from copilotkit.runloop import queue_put, get_context_execution
from copilotkit.protocol import (
RuntimeEventTypes,
RunStarted,
RunFinished,
RunError,
NodeStarted,
NodeFinished,
agent_state_message,
text_message_start,
text_message_content,
text_message_end,
action_execution_start,
action_execution_args,
action_execution_end,
meta_event,
RuntimeMetaEventName,
PredictStateConfig,
)
logger = get_logger(__name__)
class CopilotKitProperties(BaseModel):
"""CopilotKit properties"""
actions: List[Any] = Field(default_factory=list)
class CopilotKitState(FlowState):
"""CopilotKit state"""
messages: List[Any] = Field(default_factory=list)
copilotkit: CopilotKitProperties = Field(default_factory=CopilotKitProperties)
async def crewai_flow_async_runner(flow: Flow, inputs: Dict[str, Any]):
"""
Runs a flow in a separate thread. Workaround since the flow will use
asyncio.run().
"""
async def crewai_flow_event_subscriber(flow: Any, event: CrewAIFlowEvent):
if isinstance(event, FlowStartedEvent):
await queue_put(
RunStarted(type=RuntimeEventTypes.RUN_STARTED, state=flow.state),
priority=True,
)
elif isinstance(event, MethodExecutionStartedEvent):
await queue_put(
NodeStarted(
type=RuntimeEventTypes.NODE_STARTED,
node_name=event.method_name,
state=flow.state,
),
priority=True,
)
elif isinstance(event, MethodExecutionFinishedEvent):
await queue_put(
NodeFinished(
type=RuntimeEventTypes.NODE_FINISHED,
node_name=event.method_name,
state=flow.state,
),
priority=True,
)
elif isinstance(event, FlowFinishedEvent):
await queue_put(
RunFinished(type=RuntimeEventTypes.RUN_FINISHED, state=flow.state),
priority=True,
)
def _global_event_listener(_sender: Any, _event: CrewAIFlowEvent, **_kw): # noqa: D401
# Forward to the async handler inside the flow's loop
loop = asyncio.get_running_loop()
loop.call_soon(
lambda: asyncio.create_task(crewai_flow_event_subscriber(flow, _event))
)
# Register for the specific event classes we care about to avoid noise
for _ev_cls in (
FlowStartedEvent,
MethodExecutionStartedEvent,
MethodExecutionFinishedEvent,
FlowFinishedEvent,
):
_crewai_event_bus.on(_ev_cls)(_global_event_listener) # type: ignore
try:
await flow.kickoff_async(inputs=inputs)
except Exception as e: # pylint: disable=broad-except
await queue_put(RunError(type=RuntimeEventTypes.RUN_ERROR, error=e))
async def copilotkit_emit_state(state: Any) -> Literal[True]:
"""
Emits intermediate state to CopilotKit.
Useful if you have a longer running node and you want to update the user with the current state of the node.
To install the CopilotKit SDK, run:
```bash
pip install copilotkit[crewai]
```
### Examples
```python
from copilotkit.crewai import copilotkit_emit_state
for i in range(10):
await some_long_running_operation(i)
await copilotkit_emit_state({"progress": i})
```
Parameters
----------
state : Any
The state to emit (Must be JSON serializable).
Returns
-------
Awaitable[bool]
Always return True.
"""
execution = get_context_execution()
state_as_dict = state.model_dump() if isinstance(state, BaseModel) else state
state = {
k: v for k, v in state_as_dict.items() if k not in ["messages", "copilotkit"]
}
await queue_put(
agent_state_message(
thread_id=execution["thread_id"],
agent_name=execution["agent_name"],
node_name=execution["node_name"],
run_id=execution["run_id"],
active=True,
role="assistant",
state=json.dumps(state_as_dict),
running=True,
)
)
return True
async def copilotkit_emit_message(message: str) -> str:
"""
Manually emits a message to CopilotKit. Useful in longer running nodes to update the user.
Important: You still need to return the messages from the node.
### Examples
```python
from copilotkit.crewai import copilotkit_emit_message
message = "Step 1 of 10 complete"
await copilotkit_emit_message(message)
# Return the message from the node
return {
"messages": [AIMessage(content=message)]
}
```
Parameters
----------
message : str
The message to emit.
Returns
-------
Awaitable[bool]
Always return True.
"""
message_id = str(uuid.uuid4())
await queue_put(
text_message_start(message_id=message_id, parent_message_id=None),
text_message_content(message_id=message_id, content=message),
text_message_end(message_id=message_id),
)
return message_id
async def copilotkit_emit_tool_call(
*, name: str, args: Dict[str, Any], tool_call_id: Optional[str] = None
) -> str:
"""
Manually emits a tool call to CopilotKit.
```python
from copilotkit.crewai import copilotkit_emit_tool_call
auto_id = await copilotkit_emit_tool_call(name="SearchTool", args={"steps": 10})
# With a custom ID for correlation/idempotency:
custom_id = await copilotkit_emit_tool_call(name="SearchTool", args={"steps": 10}, tool_call_id="my-custom-id")
```
Parameters
----------
name : str
The name of the tool to emit.
args : Dict[str, Any]
The arguments to emit.
tool_call_id : Optional[str]
Optional tool call ID. If not provided, a random UUID is generated.
When provided, this ID is used as both the toolCallId and
parentMessageId in AG-UI protocol events.
The caller is responsible for ensuring uniqueness.
Returns
-------
str
The tool call ID used for the emitted tool call.
"""
if not isinstance(name, str) or not name.strip():
raise CopilotKitMisuseError(
"Tool name must be a non-empty string for copilotkit_emit_tool_call"
)
if tool_call_id is not None:
if not isinstance(tool_call_id, str) or not tool_call_id.strip():
raise CopilotKitMisuseError(
"Tool call id must be a non-empty string when provided for copilotkit_emit_tool_call"
)
try:
args_json = json.dumps(args)
except (TypeError, ValueError) as e:
raise CopilotKitMisuseError(
f"Tool arguments for '{name}' are not JSON-serializable: {e}"
) from e
message_id = tool_call_id if tool_call_id is not None else str(uuid.uuid4())
try:
await queue_put(
action_execution_start(
action_execution_id=message_id,
action_name=name,
parent_message_id=message_id,
),
action_execution_args(action_execution_id=message_id, args=args_json),
action_execution_end(action_execution_id=message_id),
)
except Exception:
try:
await queue_put(
action_execution_end(action_execution_id=message_id),
)
except Exception:
logger.error(
"Failed to emit compensating action_execution_end for %s",
message_id,
exc_info=True,
)
raise
return message_id
async def copilotkit_stream(response):
"""
Stream litellm responses token by token to CopilotKit.
```python
response = await copilotkit_stream(
completion(
model="openai/gpt-4o",
messages=messages,
tools=tools,
stream=True # this must be set to True for streaming
)
)
```
"""
if isinstance(response, ModelResponse):
return _copilotkit_stream_response(response)
if isinstance(response, CustomStreamWrapper):
return await _copilotkit_stream_custom_stream_wrapper(response)
raise ValueError("Invalid response type")
async def _copilotkit_stream_custom_stream_wrapper(response: CustomStreamWrapper):
message_id: str = ""
tool_call_id: str = ""
content = ""
created = 0
model = ""
system_fingerprint = ""
finish_reason = None
mode = None
all_tool_calls = []
for chunk in response:
if message_id is None:
message_id = chunk["id"]
tool_calls = chunk["choices"][0]["delta"]["tool_calls"]
finish_reason = chunk["choices"][0]["finish_reason"]
created = chunk["created"]
model = chunk["model"]
system_fingerprint = chunk["system_fingerprint"]
if mode == "text" and (tool_calls is not None or finish_reason is not None):
# end the current text message
await queue_put(text_message_end(message_id=message_id))
elif mode == "tool" and (tool_calls is None or finish_reason is not None):
# end the current tool call
await queue_put(action_execution_end(action_execution_id=tool_call_id))
if finish_reason is not None:
break
if mode != "text" and tool_calls is None:
# start a new text message
await queue_put(
text_message_start(message_id=message_id, parent_message_id=None)
)
elif mode != "tool" and tool_calls is not None and tool_calls[0].id is not None:
# start a new tool call
tool_call_id = tool_calls[0].id
await queue_put(
action_execution_start(
action_execution_id=tool_call_id,
action_name=tool_calls[0].function["name"],
parent_message_id=message_id,
)
)
all_tool_calls.append(
{
"id": tool_call_id,
"name": tool_calls[0].function["name"],
"arguments": "",
}
)
mode = "tool" if tool_calls is not None else "text"
if mode == "text":
text_content = chunk["choices"][0]["delta"]["content"]
if text_content is not None:
content += text_content
await queue_put(
text_message_content(message_id=message_id, content=text_content)
)
elif mode == "tool":
tool_arguments = tool_calls[0].function["arguments"]
if tool_arguments is not None:
await queue_put(
action_execution_args(
action_execution_id=tool_call_id, args=tool_arguments
)
)
all_tool_calls[-1]["arguments"] += tool_arguments
tool_calls = [
ChatCompletionMessageToolCall(
function=LiteLLMFunction(
arguments=tool_call["arguments"], name=tool_call["name"]
),
id=tool_call["id"],
type="function",
)
for tool_call in all_tool_calls
]
return ModelResponse(
id=message_id,
created=created,
model=model,
object="chat.completion",
system_fingerprint=system_fingerprint,
choices=[
Choices(
finish_reason=finish_reason,
index=0,
message=LiteLLMMessage(
content=content,
role="assistant",
tool_calls=tool_calls if len(tool_calls) > 0 else None,
function_call=None,
),
)
],
)
def _copilotkit_stream_response(response: ModelResponse):
return response
async def copilotkit_exit() -> Literal[True]:
"""
Exits the current agent after the run completes. Calling copilotkit_exit() will
not immediately stop the agent. Instead, it signals to CopilotKit to stop the agent after
the run completes.
### Examples
```python
from copilotkit.crewai import copilotkit_exit
def my_function():
await copilotkit_exit()
return state
```
Returns
-------
Awaitable[bool]
Always return True.
"""
await queue_put(meta_event(name=RuntimeMetaEventName.EXIT, value=True))
return True
async def copilotkit_predict_state(
config: Dict[str, PredictStateConfig],
) -> Literal[True]:
"""
Stream tool calls as state to CopilotKit.
To emit a tool call as streaming CrewAI state, pass the destination key in state,
the tool name and optionally the tool argument. (If you don't pass the argument name,
all arguments are emitted under the state key.)
```python
from copilotkit.crewai import copilotkit_predict_state
await copilotkit_predict_state(
{
"steps": {
"tool_name": "SearchTool",
"tool_argument": "steps",
},
}
)
```
Parameters
----------
config : Dict[str, CopilotKitPredictStateConfig]
The configuration to predict the state.
Returns
-------
Awaitable[bool]
Always return True.
"""
await queue_put(meta_event(name=RuntimeMetaEventName.PREDICT_STATE, value=config))
return True
def copilotkit_messages_to_crewai_flow(messages: List[Message]) -> List[Any]:
"""
Convert CopilotKit messages to CrewAI Flow messages
"""
result = []
processed_action_executions = set()
for message in messages:
message_id = message["id"]
message_type = message.get("type")
if message_type == "TextMessage":
result.append(
{
"id": message_id,
"role": message.get("role"),
"content": message.get("content"),
}
)
elif message_type == "ActionExecutionMessage":
# convert multiple tool calls to a single message
original_message_id = message.get("parentMessageId", message_id)
if original_message_id in processed_action_executions:
continue
processed_action_executions.add(original_message_id)
all_tool_calls = []
# Find all tool calls for this message
for msg in messages:
msg_id = msg["id"]
if (
msg.get("parentMessageId", None) == original_message_id
or msg_id == original_message_id
):
all_tool_calls.append(msg)
tool_calls = [
{
"type": "function",
"function": {
"name": t["name"],
"arguments": json.dumps(t["arguments"]),
},
"id": t["id"],
}
for t in all_tool_calls
]
result.append(
{
"id": original_message_id,
"role": "assistant",
"content": "",
"tool_calls": tool_calls,
}
)
elif message_type == "ResultMessage":
result.append(
{
"id": message_id,
"role": "tool",
"tool_call_id": message.get("actionExecutionId"),
"content": message.get("result"),
}
)
return result
def crewai_flow_messages_to_copilotkit(messages: List[Dict]) -> List[Message]: # pylint: disable=too-many-branches
"""
Convert CrewAI Flow messages to CopilotKit messages
"""
result = []
tool_call_names = {}
message_ids = {id(m): m.get("id", str(uuid.uuid4())) for m in messages}
for message in messages:
if "content" in message and message.get("role") == "assistant":
if message.get("tool_calls"):
for tool_call in message["tool_calls"]:
tc_id = tool_call.get("id")
if tc_id is None:
continue
if tool_call.get("function"):
tool_call_names[tc_id] = tool_call["function"].get("name", "")
else:
tool_call_names[tc_id] = tool_call.get("name", "")
for message in messages:
message_id = message_ids[id(message)]
if message.get("role") == "tool":
result.append(
{
"actionExecutionId": message["tool_call_id"],
"actionName": tool_call_names.get(
message["tool_call_id"], message.get("name", "")
),
"result": message["content"],
"id": message_id,
}
)
elif message.get("tool_calls"):
# Always emit the assistant message, even with empty content.
# Tool call entries reference it via parentMessageId; omitting it
# orphans tool calls and breaks frontend thread reconstruction.
result.append(
{
"role": message["role"],
"content": message.get("content")
if message.get("content") is not None
else "",
"id": message_id,
}
)
for tool_call in message["tool_calls"]:
tc_id = tool_call.get("id")
if tc_id is None:
continue
if tool_call.get("function"):
result.append(
{
"id": tc_id,
"name": tool_call["function"].get("name", ""),
"arguments": json.loads(tool_call["function"]["arguments"]),
"parentMessageId": message_id,
}
)
else:
result.append(
{
"id": tc_id,
"name": tool_call.get("name", ""),
"arguments": tool_call.get("arguments", {}),
"parentMessageId": message_id,
}
)
elif message.get("content"):
result.append(
{
"role": message["role"],
"content": message["content"],
"id": message_id,
}
)
# Create a dictionary to map message ids to their corresponding messages
results_dict = {
msg["actionExecutionId"]: msg for msg in result if "actionExecutionId" in msg
}
# since we are splitting multiple tool calls into multiple messages,
# we need to reorder the corresponding result messages to be after the tool call
reordered_result = []
for msg in result:
# add all messages that are not tool call results
if not "actionExecutionId" in msg:
reordered_result.append(msg)
# if the message is a tool call, also add the corresponding result message
# immediately after the tool call
if msg.get("name"):
msg_id = msg["id"]
if msg_id in results_dict:
reordered_result.append(results_dict[msg_id])
else:
logger.warning("Tool call result message not found for id: %s", msg_id)
return reordered_result