File size: 1,033 Bytes
ddd81fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
POST http://localhost:5555/sessions
Content-Type: application/json

{
  "applicationId": "app",
  "privacyKey": "priv",
  "agentGraph": {
    "agents": {
      "my-deepresearch": {
        "type": "local",
        "agentType": "deepresearch",
        "options": {
          "OPENAI_API_KEY": "{{OPENAI_API_KEY}}",
          "LINKUP_API_KEY": "{{LINKUP_API_KEY}}"
        }
      },
      "my-repounderstanding": {
        "type": "local",
        "agentType": "repounderstanding",
        "options": {
          "OPENAI_API_KEY": "{{OPENAI_API_KEY}}",
          "GITHUB_ACCESS_TOKEN": "{{GITHUB_ACCESS_TOKEN}}"
        }
      },
      "my-interface": {
        "type": "local",
        "agentType": "interface",
        "options": {
          "OPENAI_API_KEY": "{{OPENAI_API_KEY}}",
          "HUMAN_RESPONSE": "Please give me a comprehensive instruction of the master branch of Coral-Protocol/coral-server."
        }
      }
    },
    "links": [
      ["my-repounderstanding", "my-deepresearch", "my-interface"]
    ]
  }
}


###