| 123456789101112131415161718192021222324252627 |
- enum ObservationType {
- // The contents of a file
- READ = "read",
- // The diff of a file edit
- EDIT = "edit",
- // The HTML contents of a URL
- BROWSE = "browse",
- // The output of a command
- RUN = "run",
- // The output of an IPython command
- RUN_IPYTHON = "run_ipython",
- // A message from the user
- CHAT = "chat",
- // Agent state has changed
- AGENT_STATE_CHANGED = "agent_state_changed",
- // Delegate result
- DELEGATE = "delegate",
- }
- export default ObservationType;
|