observation-type.tsx 490 B

123456789101112131415161718192021222324252627
  1. enum ObservationType {
  2. // The contents of a file
  3. READ = "read",
  4. // The diff of a file edit
  5. EDIT = "edit",
  6. // The HTML contents of a URL
  7. BROWSE = "browse",
  8. // The output of a command
  9. RUN = "run",
  10. // The output of an IPython command
  11. RUN_IPYTHON = "run_ipython",
  12. // A message from the user
  13. CHAT = "chat",
  14. // Agent state has changed
  15. AGENT_STATE_CHANGED = "agent_state_changed",
  16. // Delegate result
  17. DELEGATE = "delegate",
  18. }
  19. export default ObservationType;