├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── agents ├── gitcoin-communist │ ├── modelspec │ │ ├── constitution.md │ │ ├── scoring.md │ │ └── style.md │ └── visuals │ │ ├── profile.png │ │ └── prompt.md ├── open-source-capitalist │ ├── modelspec │ │ ├── constitution.md │ │ ├── scoring.md │ │ └── style.md │ └── visuals │ │ ├── profile.png │ │ └── prompt.md ├── regenerator │ ├── modelspec │ │ ├── constitution.md │ │ ├── scoring.md │ │ └── style.md │ └── visuals │ │ ├── profile.png │ │ └── prompt.md └── takin │ ├── modelspec │ ├── constitution.md │ ├── scoring.md │ └── style.md │ └── visuals │ ├── profile.png │ └── prompt.md ├── compass ├── answers │ ├── gitcoin-communist.toml │ ├── open-source-capitalist.toml │ └── regenerator.toml ├── instructions.md └── questions.toml ├── system └── ethics.md └── utils └── fetchAgents.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/README.md -------------------------------------------------------------------------------- /agents/gitcoin-communist/modelspec/constitution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/gitcoin-communist/modelspec/constitution.md -------------------------------------------------------------------------------- /agents/gitcoin-communist/modelspec/scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/gitcoin-communist/modelspec/scoring.md -------------------------------------------------------------------------------- /agents/gitcoin-communist/modelspec/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/gitcoin-communist/modelspec/style.md -------------------------------------------------------------------------------- /agents/gitcoin-communist/visuals/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/gitcoin-communist/visuals/profile.png -------------------------------------------------------------------------------- /agents/gitcoin-communist/visuals/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/gitcoin-communist/visuals/prompt.md -------------------------------------------------------------------------------- /agents/open-source-capitalist/modelspec/constitution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/open-source-capitalist/modelspec/constitution.md -------------------------------------------------------------------------------- /agents/open-source-capitalist/modelspec/scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/open-source-capitalist/modelspec/scoring.md -------------------------------------------------------------------------------- /agents/open-source-capitalist/modelspec/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/open-source-capitalist/modelspec/style.md -------------------------------------------------------------------------------- /agents/open-source-capitalist/visuals/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/open-source-capitalist/visuals/profile.png -------------------------------------------------------------------------------- /agents/open-source-capitalist/visuals/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/open-source-capitalist/visuals/prompt.md -------------------------------------------------------------------------------- /agents/regenerator/modelspec/constitution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/regenerator/modelspec/constitution.md -------------------------------------------------------------------------------- /agents/regenerator/modelspec/scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/regenerator/modelspec/scoring.md -------------------------------------------------------------------------------- /agents/regenerator/modelspec/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/regenerator/modelspec/style.md -------------------------------------------------------------------------------- /agents/regenerator/visuals/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/regenerator/visuals/profile.png -------------------------------------------------------------------------------- /agents/regenerator/visuals/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/regenerator/visuals/prompt.md -------------------------------------------------------------------------------- /agents/takin/modelspec/constitution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/takin/modelspec/constitution.md -------------------------------------------------------------------------------- /agents/takin/modelspec/scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/takin/modelspec/scoring.md -------------------------------------------------------------------------------- /agents/takin/modelspec/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/takin/modelspec/style.md -------------------------------------------------------------------------------- /agents/takin/visuals/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/takin/visuals/profile.png -------------------------------------------------------------------------------- /agents/takin/visuals/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/agents/takin/visuals/prompt.md -------------------------------------------------------------------------------- /compass/answers/gitcoin-communist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/compass/answers/gitcoin-communist.toml -------------------------------------------------------------------------------- /compass/answers/open-source-capitalist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/compass/answers/open-source-capitalist.toml -------------------------------------------------------------------------------- /compass/answers/regenerator.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/compass/answers/regenerator.toml -------------------------------------------------------------------------------- /compass/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/compass/instructions.md -------------------------------------------------------------------------------- /compass/questions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/compass/questions.toml -------------------------------------------------------------------------------- /system/ethics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/system/ethics.md -------------------------------------------------------------------------------- /utils/fetchAgents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalscience/deepgov-gg23/HEAD/utils/fetchAgents.ts --------------------------------------------------------------------------------