├── .gitignore ├── LICENSE ├── README.md ├── agents └── premade_agents.json ├── output.json ├── package.json ├── src ├── debate.ts ├── gpt │ ├── base.test.ts │ ├── base.ts │ └── types.ts ├── rundebate.ts ├── socrate.ts └── startingvalues.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/README.md -------------------------------------------------------------------------------- /agents/premade_agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/agents/premade_agents.json -------------------------------------------------------------------------------- /output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/output.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/package.json -------------------------------------------------------------------------------- /src/debate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/src/debate.ts -------------------------------------------------------------------------------- /src/gpt/base.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/src/gpt/base.test.ts -------------------------------------------------------------------------------- /src/gpt/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/src/gpt/base.ts -------------------------------------------------------------------------------- /src/gpt/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/src/gpt/types.ts -------------------------------------------------------------------------------- /src/rundebate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/src/rundebate.ts -------------------------------------------------------------------------------- /src/socrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/src/socrate.ts -------------------------------------------------------------------------------- /src/startingvalues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/src/startingvalues.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishioa/socrate/HEAD/yarn.lock --------------------------------------------------------------------------------