File size: 1,556 Bytes
034b730
 
 
 
 
 
 
ffc2aa4
fe79d42
034b730
 
 
357c750
 
 
034b730
357c750
fe79d42
8852f54
357c750
 
fe79d42
034b730
 
 
 
 
 
 
357c750
 
 
 
fe79d42
357c750
fe79d42
8852f54
fe79d42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8852f54
 
fe79d42
23f48d8
fe79d42
 
 
 
 
 
 
 
23f48d8
c641eb7
 
 
fe79d42
 
8852f54
 
fe79d42
 
 
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
nodes:
   ### Camera
  - id: plot_bot
    operator:
      python: ../operators/plot.py
      inputs:
        image: webcam/image
        user_message: whisper/text
        position: robot/position

  - id: robot
    operator:
      python: 
        source: ../operators/robot.py
        conda_env: robomaster
      inputs:
        tick: dora/timer/millis/750
        planning_control: planning/control
        led: whisper/led
      outputs:
        - control_reply
        - position

  - id: webcam
    custom:
      source: ../operators/opencv_stream.py
      outputs:
        - image
  
  - id: whisper
    operator:
      python: ../operators/whisper_op.py
      inputs:
        audio: dora/timer/millis/1000
      outputs:
        - text
        - led

  - id: llm
    operator:
      python: ../operators/llm_op.py
      inputs:
        text: whisper/text
        reloaded: policy/reloaded
      outputs:
        - init

  - id: policy
    operator:
      python: ../operators/policy.py
      inputs: 
        init: llm/init
        reached_kitchen: planning/reached_kitchen
        reached_living_room: planning/reached_living_room
      outputs:
        - go_to
        - reloaded

  - id: planning
    operator:
      python: ../operators/planning_op.py
      inputs:
        position: robot/position
        control_reply: robot/control_reply
        set_goal: policy/go_to
        image: 
          source: webcam/image
          queue_size: 1
      outputs:
        - control
        - reached_kitchen
        - reached_living_room