mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
51a195bd94
* add support for conversational state to assistance endpoint This refactors the assistance code somewhat, to allow carrying along some conversational state. It extends the OpenAI-flavored assistant to make use of that state to have a conversation. The front-end is tweaked a little bit to allow for replies that don't have any code in them (though I didn't get into formatting such replies nicely). Currently tested primarily through the runCompletion script, which has been extended a bit to allow testing simulated conversations (where an error is pasted in follow-up, or an expected-vs-actual comparison). Co-authored-by: George Gevoian <85144792+georgegevoian@users.noreply.github.com>
18 lines
674 B
JavaScript
18 lines
674 B
JavaScript
#!/usr/bin/env node
|
|
"use strict";
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
let codeRoot = path.dirname(path.dirname(__dirname));
|
|
if (!fs.existsSync(path.join(codeRoot, '_build'))) {
|
|
codeRoot = path.dirname(codeRoot);
|
|
}
|
|
|
|
process.env.DATA_PATH = path.join(__dirname, 'data');
|
|
|
|
require('app-module-path').addPath(path.join(codeRoot, '_build'));
|
|
require('app-module-path').addPath(path.join(codeRoot, '_build', 'core'));
|
|
require('app-module-path').addPath(path.join(codeRoot, '_build', 'ext'));
|
|
require('app-module-path').addPath(path.join(codeRoot, '_build', 'stubs'));
|
|
require('test/formula-dataset/runCompletion_impl').runCompletion().catch(console.error);
|