Skip to content

pharo-llm/pharo-acp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pharo-ACP

Pharo 13 & 14 License: MIT PRs Welcome Status: Active CI

Pharo-ACP implements the Agent Client Protocol (ACP) within Pharo so that Pharo tools or agents can communicate using the standardized ACP format (allowing them to interoperate with any editor or client that supports ACP)

Official ACP site: https://agentclientprotocol.com/

To install stable version of Pharo-ACP in your image you can use:

Metacello new
  githubUser: 'pharo-llm' project: 'pharo-acp' commitish: 'X.X.X' path: 'src';
  baseline: 'LLMPharoACP';
  load

For development version install it with this:

Metacello new
  githubUser: 'pharo-llm' project: 'pharo-acp' commitish: 'main' path: 'src';
  baseline: 'LLMPharoACP';
  load.